.pos-operator-auth {
  padding: 24px;
  background: #fff;
  min-height: 100vh;
}

/* 页面标题 */
.pos-operator-auth-header {
  margin-bottom: 32px;
}

.pos-operator-auth-title {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #262626 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.4 !important;
}

.pos-operator-auth-description {
  font-size: 14px !important;
  color: #8c8c8c !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* 区域样式 */
.pos-operator-auth-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* 左右布局容器 */
.pos-operator-auth-section-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.pos-operator-auth-section-header {
  flex: 0 0 320px;
  min-width: 280px;
}

.pos-operator-auth-section-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #262626 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.4 !important;
}

.pos-operator-auth-section-description {
  font-size: 14px !important;
  color: #8c8c8c !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.pos-operator-auth-section-content {
  flex: 1;
  min-width: 0;
}

/* 底部按钮 */
.pos-operator-auth-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}


/* 响应式设计 */
@media (max-width: 768px) {
  .pos-operator-auth {
    padding: 16px;
  }

  .pos-operator-auth-section {
    padding: 16px;
  }

  .pos-operator-auth-section-layout {
    flex-direction: column;
    gap: 24px;
  }

  .pos-operator-auth-section-header {
    flex: 1;
    min-width: auto;
  }

  .pos-operator-auth-footer {
    padding: 16px;
  }
}

