/**
 * LoginPanel 登录面板组件样式
 */
.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 24px;

  /* 占位区域 */
  &__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border: 2px dashed #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    width: 100%;
    max-width: 360px;
  }

  /* 占位文本 */
  &__placeholder-text {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin: 0 0 8px 0;
  }

  /* 占位提示 */
  &__placeholder-hint {
    font-size: 14px;
    color: #bbb;
    margin: 0;
  }
}

