/* Forget password page specific CSS */

.forget-password-container {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.form-subtitle {
    margin-bottom: 2.5rem;
}

.info-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    height: 3rem;
    background: #004aad;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 74, 173, 0.3);
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #003d91;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px -3px rgba(0, 74, 173, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-state {
    text-align: center;
    padding: 2rem 0;
    display: none;
}

.success-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: #059669;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.success-text {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.email-highlight {
    font-weight: 600;
    color: #0f172a;
    display: block;
    margin-top: 0.5rem;
}

.success-hint {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.footer-link {
    margin-top: 2.5rem;
}
