/**
 * BrandPanel 品牌区组件样式
 */
.webpos-login-brand-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-width: 400px;
  min-height: 600px;
  background: linear-gradient(135deg, #F04A28 0%, #E8421F 100%);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  flex-shrink: 0;

  /* 品牌内容区 */
  &__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
  }

  /* Logo 容器 */
  &__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
  }

  /* Logo 图片 */
  &__logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
  }

  /* 品牌标语 */
  &__slogan {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    line-height: 1.5;
  }
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
  .webpos-login-brand-panel {
    display: none;
  }
}
