/* 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;
}

.password-field {
    position: relative;
}

.password-field .input-wrapper {
    position: relative;
}

.password-field .input-wrapper input {
    padding-right: 2.5rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 2;
}

.password-toggle:hover {
    color: #374151;
}

.password-requirements {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
}

.password-req-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.password-req-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #d1d5db;
}

.password-req-dot.valid {
    background: #10b981;
}

.password-req-text {
    color: #6b7280;
}

.password-req-text.valid {
    color: #059669;
}
