html, body {
    height: 100%;
    margin: 0;
    background: transparent;
}

.login-layout {
    display: flex;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.brand-panel {
    width: 45%;
    background: #0f1729;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.brand-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.brand-panel::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.brand-header {
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: -0.03em;
}

.brand-content {
    position: relative;
    z-index: 1;
}

.brand-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.brand-tagline span {
    color: var(--dc-beige);
}

.brand-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 380px;
    line-height: 1.7;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dc-beige);
}

.brand-footer {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.login-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: var(--dc-off-white);
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-header {
    margin-bottom: 36px;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f1729;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.login-subtitle {
    font-size: 0.9375rem;
    color: #4b5563;
}

@media (max-width: 1024px) {
    .brand-panel {
        width: 40%;
        padding: 36px;
    }

    .brand-tagline {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .login-layout {
        flex-direction: column;
    }

    .brand-panel {
        width: 100%;
        min-height: auto;
        padding: 32px 24px;
    }

    .brand-content {
        display: none;
    }

    .brand-footer {
        display: none;
    }

    .login-panel {
        padding: 32px 24px;
    }
}
