<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.forgot-password-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
}

.card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.card h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.description {
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-wrapper input:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px var(--primary-50);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-600);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background-color: var(--primary-700);
}

.back-link {
    color: var(--text-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--primary-600);
}

/* Success State */
.success-message {
    display: none;
    text-align: center;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .forgot-password-container {
        padding: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .card h1 {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.875rem;
    }
}</pre></body></html>