:root {
  --bg: #09090b;
  --sidebar-text: #475569;
  --blue-primary: #4039fa;
  --text-color: #767676;
  --black-white: #f2f2f4;
  --table-bg: #ffffff08;
  --right-panel-bg: #ffffff0d;
  --welcome-banner-bg: linear-gradient(to right, #331417, #1b1c3a);
  --input-bg: #ffffff0a;
  --input-border: #ffffff1a;
  --theme-btn-bg: linear-gradient(90deg, #007f72, #9108a4);
}

[data-theme=light] {
  --bg: #fff;
  --sidebar-text: #050506f5;
  --blue-primary: #4039fa;
  --text-color: #767676;
  --black-white: #000000;
  --table-bg: #00000008;
  --right-panel-bg: #1148b60a;
  --welcome-banner-bg: linear-gradient(to right, #f3e8e6, #dbe4f7);
  --input-bg: #0000000a;
  --input-border: #0000001a;
  --theme-btn-bg: linear-gradient(90deg, #00f6de, #df00ff);
}

:root {
  --auth-bg: #f5f6f7;
}

[data-theme=dark] {
  --auth-bg: #000;
}

.auth_ctr {
  width: 100%;
  height: 100vh;
  background: var(--auth-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth_ctr .green_gradient {
  width: 800px;
  height: 800px;
  position: absolute;
  bottom: -300px;
  left: -300px;
  background: radial-gradient(circle at center, rgba(50, 140, 130, 0.6), transparent 60%);
}
.auth_ctr .purple_gradient {
  width: 800px;
  height: 800px;
  position: absolute;
  top: -300px;
  right: -300px;
  background: radial-gradient(circle at center, rgba(150, 50, 150, 0.6), transparent 60%);
}
.auth_ctr h2 {
  color: var(--black-white);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}
.auth_ctr .auth_form {
  position: relative;
  z-index: 999;
  width: 500px;
  padding: 0px 20px;
}
.auth_ctr .auth_form p {
  font-size: 16px;
  color: var(--black-white);
  padding-top: 10px;
}
.auth_ctr .auth_form p a {
  color: var(--black-white);
  text-decoration: underline;
}
.auth_ctr .auth_form .input_group_box {
  margin: 40px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth_ctr .auth_form .input_group_box .two_col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.auth_ctr .auth_form .input_group_with_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth_ctr .auth_form .input_group_with_btn .input_group {
  flex: 1;
  margin: 0;
}
.auth_ctr .auth_form .input_group_with_btn .gradient_btn {
  width: 138px;
  border-radius: 12px;
  height: 53px;
}
.auth_ctr .auth_form .info_text {
  color: var(--black-white);
  font-size: 12px;
}
.auth_ctr .auth_form .forgot_password {
  margin-top: 40px;
  font-size: 16px;
  color: var(--text-color);
}
.auth_ctr .auth_form .forgot_password a {
  color: var(--text-color);
}
.auth_ctr .auth_form .line_divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.auth_ctr .auth_form .line_divider .line {
  flex: 1;
  height: 1px;
  background: var(--black-white);
}
.auth_ctr .auth_form .line_divider span {
  color: var(--text-color);
  font-size: 16px;
  white-space: nowrap;
}
.auth_ctr .auth_form .btn_box {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.auth_ctr .auth_form .btn_box button {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.0392156863);
  border: 1px solid var(--black-white);
  color: var(--black-white);
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.auth_ctr .auth_form .btn_box button:hover {
  background: var(--input-bg);
}
.auth_ctr .pp_tnc {
  width: 100%;
  height: 100%;
  color: var(--text-color);
  max-width: 713px;
  padding: 60px 20px;
}
.auth_ctr .pp_tnc .pp_tnc_content {
  list-style-type: decimal;
  padding-left: 20px;
  margin-top: 40px;
}
.auth_ctr .pp_tnc .pp_tnc_content li .pp_tnc_title {
  margin-bottom: 20px;
}
.auth_ctr .pp_tnc .pp_tnc_content li {
  margin-bottom: 20px;
}/*# sourceMappingURL=auth.css.map */