/* PawLog Auth View CSS */

/* Auth Screen */
#auth-screen {
    position: relative;
    /* Background removed to show body background */
}

/* Subtle tint at top (max 10% intensity) */
#auth-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40vh;
    background: linear-gradient(180deg, var(--color-tint) 0%, transparent 100%);
    pointer-events: none;
}

.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: var(--color-border);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    padding: 2px;
}

.tab-btn {
    flex: 1;
    padding: 0.875rem;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px 10px 0 0;
}

.tab-btn:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

.tab-btn.active {
    background: var(--color-surface);
    color: var(--color-primary);
    font-weight: 600;
}

/* Auth Forms */
.auth-form {
    background: var(--color-surface);
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
}

.auth-form h2 {
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-form h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-header h1 {
        font-size: 2rem;
    }
}