/* index.less */
html {
  --primary-color: #ffc249;
  --text-color-gray: #e1dcd0;
  --background-dark1: #26231b;
  --background-dark2: #534b36;
  --dark1: #423c2b;
  --dark2: #191816;
  --dark3: #a8a292;
  --dark4: #6f6855;
  --dark5: #1f1d18;
  --white1: #fffdfa;
  --blue1: #26bbff;
}
html[data-theme='light'] {
  --primary-color: #ffffff;
}
.ql-editor.ql-blank::before {
  color: #a8a292 !important;
  font-style: normal !important;
  font-size: 16px !important;
  left: 0 !important;
  right: unset !important;
}
.ql-editor {
  padding: 0 !important;
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 14px !important;
  color: #e1dcd0;
  font-style: normal;
  position: relative;
}
:root {
  font-family: 'PingFang SC', 'PingFang SC-Medium', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #213547;
  background-color: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 添加全局CSS变量，用于尺寸约束 */
  --max-width: 1920px;
  --max-height: 1080px;
  --vw-unit: min(calc(1vw), calc(var(--max-width) / 100));
  --vh-unit: min(calc(1vh), calc(var(--max-height) / 100));
}
a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}
html,
body {
  margin: 0;
  padding: 0;
  background-color: #191816 !important;
  width: 100% !important;
  height: 100%;
  overscroll-behavior: none;
}
html {
  overflow-y: hidden;
}
body {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
h1 {
  font-size: clamp(2em, 3.2vw, 3.2em);
  line-height: 1.2;
}
button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: clamp(0.4em, 0.6vw, 0.6em) clamp(0.8em, 1.2vw, 1.2em);
  font-size: clamp(0.875em, 1vw, 1em);
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}
@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
p {
  margin: 0;
  padding: 0;
}

:root {
  /* 基准根字体大小设置为16px，这是大多数浏览器的默认值 */
  font-size: 16px;
}
/* 响应式字体大小调整 */
/* 小屏幕设备（手机等）*/
@media screen and (max-width: var(--breakpoint-sm)) {
  :root {
    /* 在小屏幕上稍微减小字体大小 */
    font-size: 14px;
  }
}
/* 中等屏幕设备（平板等）*/
@media screen and (min-width: var(--breakpoint-sm)) and (max-width: var(--breakpoint-lg)) {
  :root {
    /* 保持默认字体大小 */
    font-size: 16px;
  }
}
/* 大屏幕设备（桌面等）*/
@media screen and (min-width: var(--breakpoint-lg)) {
  :root {
    /* 在大屏幕上可以适当增大字体大小 */
    font-size: clamp(16px, 1vw, 18px);
  }
}
/* 
  使用说明：
  1. 在需要使用rem单位的地方，可以使用src/utils/responsive.js中的pxToRem函数进行转换
  2. 例如：padding: var(--spacing-md); 或者 通过JS: style={{ margin: pxToRem(20) }}
  3. 这样可以确保在不同设备上保持一致的比例关系
*/

.agent-message-box-custom-tag {
  font-size: 12px;
  color: #e1dcd0;
  user-select: none;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper {
  padding: 4px 3px;
  background: #423c2b;
  border-radius: 4px 4px 4px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
  height: 24px;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-text {
  font-family: PingFang SC,
        PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #fffdfa;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: relative;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-line {
  width: 1px;
  height: 13px;
  background: #a8a292;
  border-radius: 0px 0px 0px 0px;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-close-button {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-close-button::before,
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-close-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #FFC249;
  transform-origin: center;
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.agent-message-box-custom-tag .agent-message-box-custom-tag-wrapper .agent-message-box-custom-tag-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.markdown-body {
  @import '~github-markdown-css/github-markdown.css';
  background: transparent !important;
}
.markdown-body ul,
.markdown-body ol {
  list-style-position: inside;
}
#root {
  width: 100vw;
  margin: 0;
  text-align: center;
}
.logo {
  height: clamp(3em, 6vw, 6em);
  padding: clamp(0.75em, 1.5vw, 1.5em);
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}
@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}
.card {
  padding: clamp(1em, 2vw, 2em);
}
.read-the-docs {
  color: #888;
}

@keyframes mac-rotate_kuyGyS6_7P {
  to {
    transform: rotate(360deg);
  }
}
.Button_qUglPDj_IU {
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  border-radius: 4px;
  padding: 6px 16px;
  border: none;
  box-shadow: none;
}
.Button_qUglPDj_IU.primary__WFNLRdI1W {
  background: var(--primary-color) !important;
  color: var(--dark2) !important;
}
.Button_qUglPDj_IU.primary__WFNLRdI1W:hover {
  background: #ffe6b5 !important;
  border-radius: 4px;
  color: var(--dark2) !important;
}
.Button_qUglPDj_IU.default_kkm1fab26c {
  background: #423c2b;
}
.Button_qUglPDj_IU.default_kkm1fab26c:hover,
.Button_qUglPDj_IU.default_kkm1fab26c.ant-btn-variant-outlined:hover {
  background: #534b36;
  border-radius: 4px;
}
.Button_qUglPDj_IU.gray_wKWJzRH7nZ {
  color: #e1dcd0;
  background: #26231b;
  border: 1px solid #a8a292;
}
.Button_qUglPDj_IU.gray_wKWJzRH7nZ:hover {
  color: #e1dcd0 !important;
  background: #26231b !important;
  border: 1px solid #a8a292 !important;
}
.Button_qUglPDj_IU.gray_wKWJzRH7nZ.ant-btn-variant-outlined:hover {
  color: #e1dcd0;
  background: #26231b;
  border: 1px solid #a8a292;
}
.Button_qUglPDj_IU:disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-touch-callout: none;
}
.IconButton_W2ee5B47iK {
  border-radius: 6px;
}
.IconButton_W2ee5B47iK:hover,
.IconButton_W2ee5B47iK.selected_ILd1U9I7in {
  background-color: #423c2b;
}

@keyframes mac-rotate {
  to {
    transform: rotate(360deg);
  }
}
.yidooO-icon {
  display: inline-block;
  text-align: center;
  vertical-align: -0.125em;
  line-height: 0;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}
.yidooO-icon.disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-touch-callout: none;
}

@keyframes mac-rotate_VFSIidqk9b {
  to {
    transform: rotate(360deg);
  }
}
.Checkbox_NONmhlld1S .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #ffc249;
  border-color: #ffc249;
}
.Checkbox_NONmhlld1S .ant-checkbox-checked .ant-checkbox-inner:hover {
  border-color: #ffc249 !important;
}
.Checkbox_NONmhlld1S .ant-checkbox-inner {
  border-color: #ffc249 !important;
}
.Checkbox_NONmhlld1S .ant-checkbox-inner:hover {
  border-color: #ffc249 !important;
}
.Checkbox_NONmhlld1S .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #ffc249 !important;
}
.Checkbox_NONmhlld1S .ant-checkbox-indeterminate .ant-checkbox-inner::after {
  background-color: #FFF !important;
  height: 3px !important;
  width: 70% !important;
}

@keyframes mac-rotate_gLjDXGHGsQ {
  to {
    transform: rotate(360deg);
  }
}
.Input_UMafZlEd47,
.InputTextArea_WLzklgcgVO {
  background: #191816;
  border-radius: 8px;
  border: 1px solid #6f6855;
  padding: 10px 12px;
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #a8a292;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.Input_UMafZlEd47:hover,
.InputTextArea_WLzklgcgVO:hover,
.Input_UMafZlEd47:focus,
.InputTextArea_WLzklgcgVO:focus {
  background: #26231b;
  box-shadow: none;
  border: 1px solid #6f6855;
}
.Input_UMafZlEd47 .TextAreaInputCount_LuI_ID_ZZi,
.InputTextArea_WLzklgcgVO .TextAreaInputCount_LuI_ID_ZZi {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  right: 12px;
  bottom: 25px;
  font-weight: 400;
  font-size: 14px;
  color: #d4ac5c;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.Input_UMafZlEd47 .TextAreaInputCount_LuI_ID_ZZi .maxLengthWarning_ZxbUYtCSV6,
.InputTextArea_WLzklgcgVO .TextAreaInputCount_LuI_ID_ZZi .maxLengthWarning_ZxbUYtCSV6 {
  color: #ff7649;
}
.DebouncedInput_LkNUGiQT8r {
  background: #191816;
  border-radius: 8px;
  border: 1px solid #6f6855;
  padding: 10px 12px;
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #a8a292;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.DebouncedInput_LkNUGiQT8r:hover,
.DebouncedInput_LkNUGiQT8r:focus {
  background: #26231b;
  box-shadow: none;
  border: 1px solid #6f6855;
}
.DebouncedInput_LkNUGiQT8r .TextAreaInputCount_LuI_ID_ZZi {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  right: 12px;
  bottom: 25px;
  font-weight: 400;
  font-size: 14px;
  color: #d4ac5c;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.DebouncedInput_LkNUGiQT8r .TextAreaInputCount_LuI_ID_ZZi .maxLengthWarning_ZxbUYtCSV6 {
  color: #ff7649;
}
.DebouncedInput_LkNUGiQT8r input {
  color: #a8a292 !important;
}
.DebouncedInput_LkNUGiQT8r input:hover {
  background: #26231b;
  border: none;
}
.DebouncedInput_LkNUGiQT8r input::placeholder {
  color: #a8a292 !important;
  font-family: PingFang SC,
        PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #a8a292;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.DebouncedInput_LkNUGiQT8r.ant-input-outlined:focus-within {
  background: #26231b;
  box-shadow: none;
  border: 1px solid #6f6855;
}
.InputTextArea_WLzklgcgVO {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  /* Chrome / Safari / Edge */
}
.InputTextArea_WLzklgcgVO::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.InputTextArea_WLzklgcgVO::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.InputTextArea_WLzklgcgVO::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}
.InputTextArea_WLzklgcgVO::-webkit-scrollbar-track {
  background: transparent;
}
.InputTextArea_WLzklgcgVO textarea {
  resize: none;
}
.ant-input-outlined.InputTextArea_WLzklgcgVO {
  background: #191816;
  border: 1px solid #6f6855;
}
.ant-input-outlined.InputTextArea_WLzklgcgVO:hover,
.ant-input-outlined.InputTextArea_WLzklgcgVO:focus {
  background: #26231b;
  box-shadow: none;
  border: 1px solid #6f6855;
}

@keyframes mac-rotate_dnLnrJiRds {
  to {
    transform: rotate(360deg);
  }
}
/* 小桌面 */
@media (max-width: 1366px) {
  .content_nmcEGGTevB {
    width: 800px;
    height: 600px;
  }
}
/* 中桌面 */
@media (min-width: 1367px) and (max-width: 1599px) {
  .content_nmcEGGTevB {
    width: 900px;
    height: 680px;
  }
}
/* 大桌面 */
@media (min-width: 1600px) {
  .content_nmcEGGTevB {
    width: 1000px;
    height: 760px;
  }
}
.modalWrapper_kZYBsO2V46 {
  overflow: hidden !important;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n {
  width: auto !important;
  display: inline-block !important;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq {
  padding: 0 !important;
  border-radius: 20px;
  background-color: var(--background-dark1);
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB {
  display: flex;
  flex-direction: column;
  background-color: var(--background-dark1);
  background: #26231b;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid var(--dark1);
  box-sizing: border-box;
  position: relative;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .header_xfSOPJAJSG {
  height: 52px;
  flex-shrink: 0;
  font-family: PingFang SC,
            PingFang SC;
  font-weight: bold;
  font-size: 20px;
  color: var(--white1) !important;
  background: none !important;
  position: relative;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .header_xfSOPJAJSG .ant-modal-title {
  color: var(--white1) !important;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .close_Vq1dv066j6 {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  z-index: 1;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .body_mFiH5lY2oM {
  padding: 0 20px;
  flex: 1;
  overflow-y: auto;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  /* Chrome / Safari / Edge */
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .body_mFiH5lY2oM::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .body_mFiH5lY2oM::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .body_mFiH5lY2oM::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .body_mFiH5lY2oM::-webkit-scrollbar-track {
  background: transparent;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .footer_SwgsWWjSVI {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 0 !important;
  height: 87px;
  flex-shrink: 0;
}
.modalWrapper_kZYBsO2V46 .Modal_CKnlRq1C4n .modalContent_eY2caIKSQq .content_nmcEGGTevB .footer_SwgsWWjSVI .button_KcuVtYqgdF {
  height: 37px;
  width: 236px;
}

.Verification_pbnsxrTtqi {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
.back__7RZr2zIYb {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-bottom: 48px;
  cursor: pointer;
}
.line1_sA_uYC52od {
  font-family: PingFang SC,
    PingFang SC;
  font-weight: bold;
  font-size: 34px;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 32px;
  white-space: nowrap;
}
.line2_ESTo6ibRlD {
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #e1dcd0;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
}
.line3_F5etKlNIaH {
  font-family: PingFang SC,
    PingFang SC;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
  white-space: nowrap;
  text-align: center;
}
.line4_X2OxWqsCIG {
  font-family: PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 20px;
  color: #ed9e00;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 40px;
}
.VerificationOtp_d6Ts3pcGvN {
  width: 484px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  /* OTP分隔符 */
  /* OTP输入框 */
}
.VerificationOtp_d6Ts3pcGvN .otpSeparator_l3HpwBZD6d {
  display: flex;
  align-items: center;
  color: #534b36;
  font-size: 16px;
  margin: 0 2px;
}
.VerificationOtp_d6Ts3pcGvN .otpInput_w8CwTaxSII {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #d4ac5c;
  border-radius: 4px;
  font-size: 18px;
  color: #d4ac5c;
  text-align: center;
  margin: 0 8px;
  background-color: transparent;
  outline: none;
}
.Verificationfooter_LfmAqSwXZu {
  width: 100%;
  color: #e1dcd0;
  font-size: 16px;
  gap: 4px;
  margin-bottom: 60px;
  text-align: center;
}
.Verificationfooter_LfmAqSwXZu .VerificationfooterText_TcrziAk5sq {
  white-space: pre;
}

@keyframes mac-rotate_E2AfatcHcn {
  to {
    transform: rotate(360deg);
  }
}
.AuthModal_s2aaeKwdz4 {
  background: #26231b;
  border-radius: 20px;
  position: relative;
}
.authModalContainer_B9pxfFtvL_ {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.authModalContainer_B9pxfFtvL_ .authModalLogo_IsTS1XsZFp {
  margin-top: 40px;
  margin-bottom: 10px;
}
.authModalContainer_B9pxfFtvL_ .textLine1_P6tGPK9toB {
  font-family: PingFang SC,
      PingFang SC;
  font-weight: bold;
  font-size: 34px;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 40px;
}
.authModalContainer_B9pxfFtvL_ .textLine1_P6tGPK9toB > span:first-child {
  margin-right: 10px;
}
.authModalContainer_B9pxfFtvL_ .textLine2_Q737G23DEK {
  font-family: PingFang SC,
      PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #e1dcd0;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 15px;
}
.authModalContainer_B9pxfFtvL_ .GoogleLogin_nptkNMFMPn {
  position: absolute;
  left: 0;
  top: 0;
}
.authModalContainer_B9pxfFtvL_ .textLine3_cj6bSjbuFF {
  height: 21px;
  font-family: PingFang SC,
      PingFang SC;
  font-weight: 400;
  font-size: 20px;
  color: #a8a292;
  letter-spacing: 1px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin-bottom: 20px;
  align-self: stretch;
}
.authModalContainer_B9pxfFtvL_ .textLine3_cj6bSjbuFF > span:first-child {
  height: 1px;
  /* 线的粗细 */
  background-color: #534b36;
  /* 线的颜色 */
  flex: 1;
}
.authModalContainer_B9pxfFtvL_ .textLine3_cj6bSjbuFF > span:last-child {
  height: 1px;
  /* 线的粗细 */
  background-color: #534b36;
  /* 线的颜色 */
  flex: 1;
}
.authModalContainer_B9pxfFtvL_ .emailInput_kOZzQj2WqV {
  width: 380px;
  height: 51px;
  background: #1f1d18;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 28px;
}
.authModalContainer_B9pxfFtvL_ .emailInput_kOZzQj2WqV:focus {
  border: 1px solid #ffc249;
}
.authModalContainer_B9pxfFtvL_ .emailInput_kOZzQj2WqV::placeholder {
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #e1dcd0;
  text-align: center;
}
.authModalContainer_B9pxfFtvL_ .emailButton_gjwQ_9tyMp {
  width: 324px;
  height: 38px;
  border-radius: 8px 8px 8px 8px;
  margin-bottom: 40px;
  font-family: PingFang SC,
      PingFang SC;
  font-weight: 400;
  font-size: 14px;
}
.authModalContainer_B9pxfFtvL_ .emailButton_gjwQ_9tyMp[disabled] {
  background: #423c2b;
  color: #a8a292;
  cursor: not-allowed;
}
.authModalContainer_B9pxfFtvL_ .Checkbox__0UXCFEv54 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
}
.authModalContainer_B9pxfFtvL_ .Checkbox__0UXCFEv54 .CheckboxContent_j1lenXfvg8 {
  font-family: PingFang SC,
        PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #fffdfa;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: relative;
  top: -3px;
}
.authModalContainer_B9pxfFtvL_ .Checkbox__0UXCFEv54 .CheckboxContent_j1lenXfvg8 > span {
  color: #ffc249;
  text-decoration: underline;
}
.authModalContainer_B9pxfFtvL_ .Checkbox__0UXCFEv54 .ant-checkbox {
  align-self: start;
}

@keyframes mac-rotate_oTsTu8Ltsd {
  to {
    transform: rotate(360deg);
  }
}
.CustomGoogleLogin_PHoGrhKbhA {
  width: 380px;
  height: 51px;
  background: #534b36;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid transparent;
  color: #ffffff;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 20px;
  gap: 16px;
  transition: border 0.2s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.CustomGoogleLogin_PHoGrhKbhA:hover,
.CustomGoogleLogin_PHoGrhKbhA:focus,
.CustomGoogleLogin_PHoGrhKbhA:active {
  outline: none;
  border: 1px solid #ffc249 !important;
}

