*, html {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    margin-top: 5rem;
}
.container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
    margin: 2rem 1rem;
}

.logo {
    width: 150px;
    margin-bottom: 0.6rem;
}

h2 {
    font-weight: 600;
    margin-bottom: 0.6rem;
}
#message{
    margin-bottom: .8rem;
}
input {
    outline: none !important;
    font-size: 15px;
    transition: 0.4s;
}

input:focus {
    border: 1px solid #fa0202 !important;
    outline: none !important;
}

input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    font-size: 14px;
}

.file-upload {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload:hover {
    border-color: #fa0202;
}

#fileLabel {
    display: block;
    color: #666;
    font-weight: 600;
}

#fileLabel span {
    color: #fa0202;
    text-decoration: underline;
    cursor: pointer;
}

.primary-btn {
    background-color: #fa0202;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem !important;
}

.primary-btn:hover {
    background-color: #d10000;
}

.footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #666;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.message-failure {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}
