.auth-body {
    background: #F5F6F8;
    min-height: 100vh;
}

.auth-layout {
    display: flex;
    min-height: 100vh;
    background: #F5F6F8;
}

.auth-form-panel {
    flex: 1;
    background: #fff;
    padding: 48px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-language {
    position: absolute;
    top: 32px;
    left: 48px;
    font-size: 14px;
    color: #667085;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-language span {
    font-size: 12px;
}

.auth-content {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #667085;
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form-group {
    text-align: right;
}

.auth-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1919;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input {
    width: 100%;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 12px 16px;
    font-size: 14px;
    color: #1a1919;
}

.auth-input.with-icon {
    padding-left: 40px;
}

.auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #98A2B3;
    width: 18px;
    height: 18px;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #667085;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #344054;
}

.auth-remember input {
    accent-color: #8D3176;
    width: 14px;
    height: 14px;
}

.auth-forgot {
    color: #8D3176;
    font-weight: 600;
}

.auth-submit {
    background: #8D3176;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.auth-footer {
    margin-top: 48px;
    font-size: 11px;
    color: #98A2B3;
}

.auth-brand-panel {
    width: 42%;
    min-width: 320px;
    background: linear-gradient(180deg, #35204A 0%, #6E2C66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/crm-smartup-frontend/assets/images/patterns/login-pattern.svg");
    background-size: 140px;
    opacity: 0.08;
}

.auth-brand {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 24px;
}

.auth-brand img {
    width: 140px;
    margin: 0 auto 16px;
}

.auth-brand-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.auth-brand-subtitle {
    font-size: 13px;
    color: #E6E0E8;
    margin-top: 8px;
    line-height: 1.6;
}

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

    .auth-brand-panel {
        width: 100%;
        min-height: 240px;
    }

    .auth-form-panel {
        padding: 32px 24px 48px;
    }

    .auth-language {
        left: 24px;
    }
}
