/* Forgot Password Page Styles - GROWBO Dark Theme */

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    margin: 2rem;
}

.auth-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.25rem 2rem 1.5rem;
    text-align: center;
}

.auth-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo {
    height: 36px;
    max-width: 220px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.auth-logo-link:hover .auth-logo {
    opacity: 0.85;
}

.auth-body {
    padding: 2rem;
}

.auth-body h3 {
    color: var(--tgn-text-primary);
}

.form-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    padding: 0.75rem;
}

.toggle-form {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--tgn-text-secondary);
}

.toggle-form a {
    text-decoration: none;
    font-weight: 500;
}

.toggle-form a:hover {
    text-decoration: underline;
}

.alert {
    margin-bottom: 1.5rem;
}

/* Success Icon */
.success-icon svg circle {
    stroke: var(--tgn-primary);
}

.success-icon svg path {
    stroke: var(--tgn-primary);
}
