.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.auth-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=800&q=80') center/cover no-repeat;
    opacity: 0.35;
}

.auth-panel__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.auth-panel__logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
    z-index: 1;
}

.logo-register{
    height: 80px;
    padding: 1rem;

}

.auth-panel__logo svg circle { fill: transparent; }
.auth-panel__logo svg path { fill: #fff; }

.auth-panel__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.auth-panel__title em {
    font-style: normal;
    color: var(--green-400);
}

.auth-panel__description {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.7);
    max-width: 36ch;
    line-height: 1.6;
}

.auth-panel__badges {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    display: flex;
    gap: 1rem;
    z-index: 1;
}

.auth-panel__badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.auth-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: var(--color-bg);
    overflow-y: auto;
}

.auth-form-box {
    width: 100%;
    max-width: 440px;
}

.auth-form-box__title {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-form-box__subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-block: 1.25rem;
}

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

.auth-divider__text {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.btn--google {
    background-color: #fff;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    width: 100%;
    justify-content: center;
}

.btn--google:hover {
    background-color: var(--color-bg-gray);
    border-color: #aaa;
}

.btn--google img {
    width: 18px;
    height: 18px;
}

.auth-switch {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: 1.25rem;
}

.auth-switch a {
    color: var(--color-primary);
    font-weight: 600;
}

.auth-switch a:hover { text-decoration: underline; }

.auth-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.auth-footer a { color: inherit; }
.auth-footer a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
    .auth-layout { grid-template-columns: 1fr; }
    .auth-panel  { display: none; }
    .auth-form-wrapper { padding: 2rem 1.25rem; min-height: 100vh; }
}
