/* 找回密码 */

 .forgot-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.forgot-header {
    text-align: center;
    margin-bottom: 30px;
}
.forgot-header h2 {
    color: #1a5276;
    font-size: 28px;
    margin-bottom: 10px;
}
.forgot-header p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.5;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-group input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}
.reset-btn {
    width: 100%;
    padding: 14px;
    background-color: #1a5276;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.reset-btn:hover {
    background-color: #154360;
}
.back-to-login {
    text-align: center;
    margin-top: 25px;
}
.back-to-login a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}
.back-to-login a:hover {
    color: #2980b9;
    text-decoration: underline;
}
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}
.success-message {
    color: #27ae60;
    font-size: 14px;
    margin-top: 5px;
}
.info-box {
    background-color: #f1f8ff;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}
.info-box p {
    margin: 0;
    color: #2980b9;
    font-size: 14px;
}
/* Responsive styles */
@media (max-width: 768px) {
    .forgot-container {
        margin: 20px;
        padding: 25px;
    }
    .forgot-header h2 {
        font-size: 24px;
    }
}