.main-content { padding: 0 !important; }
.footer { display: none; }

.auth-container {
    display: flex;
    width: 100%;
    min-height: calc(100vh - var(--nav-height));
}

.auth-panel-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-app);
}

.auth-card {
    width: 100%;
    max-width: 380px;
}

.auth-panel-right {
    flex: 1;
    background: var(--clinical-dark);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.brand-icon-large {
    width: 24px; height: 24px;
    background: var(--clinical-blue);
    border-radius: 4px;
    box-shadow: 24px 0 0 var(--clinical-blue), 12px 12px 0 var(--bg-app);
    margin-bottom: 1rem;
}

.brand-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.brand-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    margin: 0 auto;
}

.auth-header { text-align: center; margin-bottom: 1rem; }
.auth-header h2 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.auth-header p { color: var(--text-muted); font-size: 0.85rem; }

.auth-form { display: flex; flex-direction: column; gap: 0.8rem; }

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-weight: 600; font-size: 0.8rem; }
.form-group input {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-auth {
    background: var(--clinical-dark);
    color: white;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.2rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0.2rem 0;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--clinical-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.google-icon { width: 18px; height: 18px; }

.auth-footer { text-align: center; margin-top: 1rem; font-size: 0.85rem; }

@media (max-width: 850px) {
    .auth-panel-right { display: none; }
}

@media (max-height: 600px) {
    .auth-container { height: auto; overflow-y: visible; }
    .auth-panel-left { padding: 2rem 1rem; }
}