/* ============================================
   password_reset.css — 忘記密碼頁面專屬樣式
   ============================================ */

/* Form styles */
.form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(189, 86, 27, 0.25);
}

/* Password reset form specific styles */
.password-reset-card {
    max-width: 500px;
    margin: 0 auto;
}

.captcha-img {
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

/* Icon styles */
.form-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Links */
.text-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Info box */
.info-box {
    background-color: rgba(189, 86, 27, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Buttons - page specific */
.password-reset-card .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.password-reset-card .btn-primary:hover {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 20px 0;
    }

    .password-reset-card {
        margin: 0 15px;
    }
}
