/* Account/Auth Page Styles */

.account-container {
    padding-top: 120px;
    padding-bottom: var(--space-8);
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.auth-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: var(--radius-sm);
    color: white;
    width: 100%;
    transition: var(--transition-base);
}

.auth-form input:focus {
    border-color: var(--neon-purple);
    outline: none;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: white;
    color: #1f2937;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    width: 100%;
}

.btn-google:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: var(--space-4) 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.auth-divider:not(:empty)::before {
    margin-right: .5em;
}

.auth-divider:not(:empty)::after {
    margin-left: .5em;
}

.profile-dashboard {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.stat-card {
    padding: var(--space-3);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.auth-inline-notice {
    max-width: 440px;
    margin: 0 auto 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.45;
    border: 1px solid rgba(255, 107, 107, 0.35);
    background: rgba(255, 80, 80, 0.12);
    color: #ffb4b4;
}

.auth-inline-notice--success {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
}

.auth-inline-notice--info {
    border-color: rgba(255, 200, 80, 0.35);
    background: rgba(255, 180, 0, 0.1);
    color: #fde68a;
}

.tg-auth-notice-modal--error h2 {
    color: #ff8a8a;
}

.tg-auth-notice-modal #tg-auth-notice-message {
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.account-artist-promo {
    border: 1px solid rgba(34, 197, 94, 0.22);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(12, 18, 16, 0.55));
}

.account-artist-promo__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-green);
}

.account-artist-promo__title {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.account-artist-promo__text {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .account-container {
        padding-top: 100px;
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
}