
/* Auth Split Layout (TuneCore style) */
.auth-split-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.auth-brand-side {
    display: none;
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.auth-brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 35, 59, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.auth-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-main);
    overflow-y: auto;
    position: relative;
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Social Login Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}

.btn-social:hover {
    background: var(--nav-hover-bg);
    border-color: var(--text-secondary);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.auth-divider span {
    padding: 0 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating-custom input::placeholder {
    color: transparent;
}

.form-floating-custom label {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
    pointer-events: none;
    background: transparent;
}

.form-floating-custom input:focus ~ label,
.form-floating-custom input:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    background: var(--bg-main);
    padding: 0 0.4rem;
    color: var(--accent);
}

@media (min-width: 992px) {
    .auth-brand-side {
        display: flex;
        flex: 1.2; /* Slightly wider brand side */
    }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .auth-form-side {
        padding: 1.5rem;
    }
    
    .auth-form-container {
        max-width: 100%;
    }
    
    .auth-brand-side {
        display: none;
    }
}
