.pisell-saas-login-container {
  width: 360px;
  max-width: 360px;
  min-width: 266px;
  margin: 0 20px;
  overflow-x: hidden;

  // Logo样式
  .pisell-saas-login-logo {
    width: fit-content;
    height: 48px;
    border-radius: 8px;

    &.left {
      margin-right: auto;
      margin-left: 0;
    }

    &.center {
      margin: 0 auto;
    }

    &.right {
      margin-left: auto;
      margin-right: 0;
    }

    img {
      height: 48px;
      object-fit: contain;
    }
  }

  .pisell-saas-login-welcome-message {
    margin-top: 10px;
    color: #101828;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }

  .pisell-saas-login-title {
    margin-top: 24px;
    font-size: 30px;
    font-weight: 600;
    color: #101828;
  }

  .pisell-saas-login-subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: #475467;
    font-weight: 400;
  }

  // 表单区域样式
  .pisell-saas-login-form {
    margin-top: 32px;
    margin-bottom: 16px;

    // 表单项标题
    .form-item-label {
      font-size: 14px;
      font-weight: 500;
      color: #344054;
      margin-bottom: 6px;
      text-align: left;
    }

    // 输入框样式
    .pisell-saas-login-input {
      height: 44px;
      border-radius: 8px;
      border: 1px solid #d0d5dd;
      background: #fff;

      &:hover {
        border-color: var(--theme-color);
      }

      &:focus {
        border-color: var(--theme-color);
        box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
      }

      &.ant-input-password {
        padding: 4px 11px;

        .ant-input {
          height: 34px;
        }
      }
    }

    // 登录按钮样式
    .pisell-saas-login-button {
      height: 44px;
      border-radius: 8px;
      background: var(--theme-color);
      border: none;
      font-weight: 500;

      &:hover {
        background: #6941c6;
      }

      &:focus {
        background: var(--theme-color);
        box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
      }
    }
  }

  // 页脚样式
  .pisell-saas-login-footer {
    .pisell-saas-login-signup {
      margin-top: 32px;
      margin-bottom: 16px;
      font-size: 14px;
      color: #475467;
      font-weight: 400;

      a {
        margin-left: 4px;
        cursor: pointer;
        color: #6941c6;
        font-size: 14px;
        font-weight: 600;

        &:hover {
          color: #6941c6;
        }
      }
    }
  }
}
