body {
    font-family: 'Nunito', 'Nunito Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Forgot Password Page Styles */
.forgot-password-container {
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-password-container h2 {
    margin-bottom: 10px;
    color: #333;
}

.forgot-password-container p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #444;
    text-align: center;
}

.form-group input {
    width: 100%;
    max-width: 350px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    width: 100%;
    max-width: 350px;
    padding: 12px;
    background: #1E3D58;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #057DCD;
}

.forgot-password-container a {
    display: block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .forgot-password-container {
        padding: 15px;
    }
    .btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .forgot-password-container {
        padding: 10px;
    }
    .forgot-password-container h2 {
        font-size: 1.2em;
    }
    .btn {
        font-size: 14px;
        padding: 10px;
    }
}
