body {
    font-family: 'Droid Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #13678A;

}
.scrolled {
    background-color: #13678A;
}
.brtn{
    background-color: #13678A;
    height: 40px;
    margin-left: 0px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
.logo {
    text-decoration: none;
    color: white;

}

header .logo a {
    font-size: 3.8vh;
    font-weight: bold;
    margin-left: 20px;
    text-decoration: none;
    color: white;
}

header .menu {
    margin-right: 20px;
}

header .menu a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

header .menu a:hover {
    color: #f0f0f0;
}

section {
    padding: 50px 20px;
}

footer {
    background-color: #67a876;
    color: #fff;
    padding: 20px;
    display: grid;
    grid-template-columns: 25% 75%;
    grid-template-rows: auto auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    grid-template-areas:
        "left right"
        "center center";
}

.footer-left {
    grid-area: left;
    text-align: left;
}

.footer-right {
    grid-area: right;
    display: flex;
    justify-content: space-between;
    text-align: left;

}
.footer-righ ul {
    margin-top: 100px;
    
}

.footer-center {
    grid-area: center;
    text-align: center;
    margin-top: 20px;
}

.footer-right .nav-section {
    width: 30%;
}

.footer-right h3, .footer-right ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.footer-center h4 {
    margin-top: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}
.footer-right a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-right a:hover {
    color: orange;
}

.forgot-password {
    text-align: left;
    font-size: 13px;
    color: #3c00a0;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    margin-top: 5px;
}

.forgot-password:hover {
    color: #000;
    text-decoration: underline;
}

#sendResetEmail {
    width: auto;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #194ec9, #2a64e2);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 15px auto 0; /* Centers the button */
}

#sendResetEmail:hover {
    background: linear-gradient(135deg, #09b812, #11b344);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

#sendResetEmail:active {
    transform: scale(0.97);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* MFA Modal Styles */
.mfa-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mfa-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.mfa-container h3 {
    color: #3c00a0;
    margin-bottom: 1rem;
    text-align: center;
}

.mfa-container p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mfa-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.mfa-container input:focus {
    border-color: #3c00a0;
    outline: none;
}

.mfa-container button {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: none;
    border-radius: 20px;
    background-color: #3c00a0;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.mfa-container button:hover {
    background-color: #2a0080;
}

.mfa-container button#resend-code {
    background-color: #666;
}

.mfa-container button#resend-code:hover {
    background-color: #555;
}

.mfa-container .error {
    color: #dc3545;
    margin-top: 10px;
    padding: 10px;
    background-color: #fff5f5;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.mfa-container .success {
    color: #28a745;
    margin-top: 10px;
    padding: 10px;
    background-color: #f0fff4;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

