body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
}

.forgot-wrap {
    max-width: 42rem;
    margin: 0 auto;
    padding: 48px 16px 56px;
}

.forgot-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.forgot-card-body {
    padding: 2rem;
}

.forgot-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.forgot-header .material-icons {
    color: #D4AF37;
    font-size: 1.5rem;
}

.forgot-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1528;
}

.forgot-divider {
    border: none;
    border-top: 1px solid #a9a9af;
    margin: 0 0 1.5rem;
}

.forgot-message {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.forgot-status {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    background: #fff4f4; 
    border: 1px solid #f2caca; 
    color: #b54747;
}

.forgot-status .material-symbols-outlined {
    font-size: 1rem;
    line-height: 1.3;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    background: #FFFFFF;
    color: #111827;
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder {
    color: #9CA3AF;
}

.form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #d4af35;;
}

.form-control:hover {
    border-color: #D4AF37;
}

.form-control.is-invalid {
    border-color: #EF4444;
}

.invalid-feedback {
    display: none;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #EF4444;
}

.invalid-feedback.show {
    display: block;
}

.btn-submit {
    display: block;
    width: 11rem;
    background: #FFFFFF;
    color: #111827;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    margin: 0.5rem auto 0;
    transition: all 0.2s ease-in-out;
}

.btn-submit:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: #FFFFFF;
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #D1D5DB;
}

@media (max-width: 767px) {
    .forgot-wrap {
        padding: 32px 12px 40px;
    }

    .forgot-card-body {
        padding: 1.25rem;
    }

    .btn-submit {
        width: 100%;
    }
}
.forgot-form {
    margin-bottom: 3rem!important;
}