.auth-login ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(188, 188, 188, 0.3) !important;
  background-color: #fcfcfc !important;
}

.auth-login ::-webkit-scrollbar {
  width: 3px;
  background-color: #fcfcfc !important;
}

.auth-login ::-webkit-scrollbar-thumb {
  background-color: #474bff !important;
}

.auth-login .nb_spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-radius: 50%;
  -webkit-animation: 0.5s spin linear infinite;
  animation: 0.5s spin linear infinite;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 800px) {
  .auth-login .form-body {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 800px) {
  .auth-login .form-area-body {
    width: 482.13px;
  }

  .auth-login .auth-page-main {
    margin-right: 42%;
    overflow-x: hidden;
  }
}

.auth-login.auth-page-body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: var(--theme-primary-font) !important;
  font-weight: 400 !important;
  background-color: #ffffff;
}
.auth-page-body:not(.noAnimation) {
  animation: transInLogin 0.5s;
  animation-iteration-count: 1;
}
.noAnimation .leftAuthContent {
  animation: transleftBasic 0.5s ease-in-out;
  animation-iteration-count: 1;
}
.noAnimation .rightAuthContent {
  animation: transrightBasic 0.5s ease-in-out;
  animation-iteration-count: 1;
}

@keyframes transInLogin {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.auth-login.auth-page-body > .row {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
}

.auth-login .auth-page-main {
  margin-right: 0%;
  overflow-x: hidden;
}

.auth-login .form-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 50px;
}

.auth-login .form-area-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.auth-login .form-area-body {
  margin-top: 50px;
}

.auth-login .form-header h4 {
  font-family: var(--theme-primary-font) !important;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: -0.011em;
  color: #0062ff;
}

.auth-login .form-header .subtitle {
  font-family: var(--theme-primary-font) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.011em;
  color: #a4a4bc;
}

.auth-login .link-color {
  color: #0062ff !important;
  font-family: var(--theme-primary-font) !important;
}

.auth-login .link-color:hover {
  color: #2d7eff;
  text-decoration: none;
}

.auth-login .auth-page-sidebar {
  background-image: url("/assets/images/loginbg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 100% !important;
  padding: 0;
  margin: 0;
  position: fixed;
  right: 0;
  bottom: 0;
}

.auth-login .form input[type="text"],
.auth-login .form input[type="email"],
.auth-login .form input[type="password"] {
  background: rgba(0, 98, 255, 0.06) !important;
  border-radius: 8px;
  border: none !important;
  height: 51.13px !important;
}

.auth-login .form-check-input {
  background: rgba(0, 98, 255, 0.06) !important;
  border: none !important;
  -webkit-appearance: auto;
}

.auth-login .form .input-group-prepend {
  border: none;
}

.auth-login .form .input-group-prepend span {
  background: #e8f0fe !important;
  outline: none;
  border: none;
  border-radius: 8px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0;
}

.auth-login .form label {
  color: #b6b6b6 !important;
}

.auth-login .form input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.auth-login .form button.submit {
  background: #0062ff;
  border-radius: 8px;
  filter: drop-shadow(0px 6.19142px 20.1221px rgba(0, 0, 0, 0.12));
  height: 48px;
  border: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.auth-login .form-check-input:checked {
  background-color: #0062ff;
  border-color: #0062ff;
}

.auth-login .notice-card {
  background: rgba(255, 242, 242, 0.13);
  mix-blend-mode: normal;
  backdrop-filter: blur(100px);
  border-radius: 10px;
  color: #fff;
  font-weight: 400 !important;
  padding: 25px;
  position: relative;
  animation: transrelativeBottom 0.5s ease-in-out 0s;
}

@keyframes transrelativeBottom {
  from {
    bottom: -500px;
  }

  to {
    bottom: 0px;
  }
}

.auth-login .auth-page-sidebar-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 40px;
  padding-bottom: 50px;
}

.auth-login .toggleButton {
  cursor: pointer;
}

.auth-login .notice-card-tooltip {
  width: 238px;
  height: 45px;
  background: #0061f7;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}

.auth-login .mobile_img {
  display: none;
}

@media (min-width: 799px) and (max-width: 974px) {
  .auth-login .form-area-body {
    width: 95%;
  }
}

@media (max-width: 959px) {
  .auth-login .auth-page-sidebar {
    display: none;
  }

  .auth-login .form-area-body {
    max-width: 75%;
  }

  .auth-page-body > .row {
    height: 100% !important;
    overflow: hidden !important;
  }

  .auth-page-main {
    overflow: hidden !important;
    animation: none !important;
  }
  .auth-page-main:has(.form-body) {
    padding: 0 !important;
  }
  .auth-page-main > div {
    animation: transInBasic 0.5s ease-in-out !important;
  }
}

@media (max-width: 512px) {
  .auth-login .form-area-body {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .auth-login {
    /* remove col padding  */
    /* reduce form body padding  */
    /* show mobile svgs and disable desktop svg  */
    /* reconfigure the form area top  */
    /* header transformation  */
    /* subtitle transformation  */
  }

  .auth-login .col,
  .auth-login .col-1,
  .auth-login .col-10,
  .auth-login .col-11,
  .auth-login .col-12,
  .auth-login .col-2,
  .auth-login .col-3,
  .auth-login .col-4,
  .auth-login .col-5,
  .auth-login .col-6,
  .auth-login .col-7,
  .auth-login .col-8,
  .auth-login .col-9,
  .auth-login .col-auto,
  .auth-login .col-lg,
  .auth-login .col-lg-1,
  .auth-login .col-lg-10,
  .auth-login .col-lg-11,
  .auth-login .col-lg-12,
  .auth-login .col-lg-2,
  .auth-login .col-lg-3,
  .auth-login .col-lg-4,
  .auth-login .col-lg-5,
  .auth-login .col-lg-6,
  .auth-login .col-lg-7,
  .auth-login .col-lg-8,
  .auth-login .col-lg-9,
  .auth-login .col-lg-auto,
  .auth-login .col-md,
  .auth-login .col-md-1,
  .auth-login .col-md-10,
  .auth-login .col-md-11,
  .auth-login .col-md-12,
  .auth-login .col-md-2,
  .auth-login .col-md-3,
  .auth-login .col-md-4,
  .auth-login .col-md-5,
  .auth-login .col-md-6,
  .auth-login .col-md-7,
  .auth-login .col-md-8,
  .auth-login .col-md-9,
  .auth-login .col-md-auto,
  .auth-login .col-sm,
  .auth-login .col-sm-1,
  .auth-login .col-sm-10,
  .auth-login .col-sm-11,
  .auth-login .col-sm-12,
  .auth-login .col-sm-2,
  .auth-login .col-sm-3,
  .auth-login .col-sm-4,
  .auth-login .col-sm-5,
  .auth-login .col-sm-6,
  .auth-login .col-sm-7,
  .auth-login .col-sm-8,
  .auth-login .col-sm-9,
  .auth-login .col-sm-auto,
  .auth-login .col-xl,
  .auth-login .col-xl-1,
  .auth-login .col-xl-10,
  .auth-login .col-xl-11,
  .auth-login .col-xl-12,
  .auth-login .col-xl-2,
  .auth-login .col-xl-3,
  .auth-login .col-xl-4,
  .auth-login .col-xl-5,
  .auth-login .col-xl-6,
  .auth-login .col-xl-7,
  .auth-login .col-xl-8,
  .auth-login .col-xl-9,
  .auth-login .col-xl-auto {
    padding: 0;
  }

  .auth-login .form-body {
    padding: 25px;
  }

  .auth-login .mobile_img {
    display: block;
    text-align: center;
    margin-bottom: 26px;
  }

  .auth-login .web_img {
    display: none;
  }

  .auth-login .form-area-top {
    position: absolute;
    bottom: 31px;
    justify-content: center;
    height: auto;
  }

  .auth-login .form-header h4 {
    font-size: 30px;
    line-height: 24px;
  }

  .auth-login .form-header .subtitle {
    font-size: 14px;
    line-break: 14px;
  }
}
.auth-register {
  /* responsive ui desgins from figma */
  /* ; */
}

.auth-register ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(188, 188, 188, 0.3) !important;
  background-color: #fcfcfc !important;
}

.auth-register ::-webkit-scrollbar {
  width: 3px;
  background-color: #fcfcfc !important;
}

.auth-register ::-webkit-scrollbar-thumb {
  background-color: #474bff !important;
}

.auth-register .nb_spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-radius: 50%;
  -webkit-animation: 0.5s spin linear infinite;
  animation: 0.5s spin linear infinite;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 800px) {
  .auth-register .form-body {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 800px) {
  .auth-register .form-area-body {
    width: 482.13px;
  }

  .auth-register .auth-page-main {
    margin-right: 42%;
    overflow-x: hidden;
  }
}

.auth-register.auth-page-body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: var(--theme-primary-font) !important;
  font-weight: 400 !important;
  /* background-color: #e5e5e5; */
  background-color: #ffffff;
}

@keyframes transIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.auth-register.auth-page-body > .row {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
}

.auth-register .form-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 50px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.auth-register .form-area-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
}

.auth-register .form-area-body {
  margin-top: 35px;
}

.auth-register .form-header h4 {
  font-family: var(--theme-primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: -0.011em;
  color: #0062ff;
}

.auth-register .form-header .subtitle {
  font-family: var(--theme-primary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.011em;
  color: #a4a4bc;
}

.auth-register .link-color {
  color: #0062ff !important;
  font-family: var(--theme-primary-font) !important;
}

.auth-register .link-color:hover {
  color: #2d7eff;
  text-decoration: none;
}

.auth-register .auth-page-sidebar {
  background-image: url("/assets/images/registerbg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 100% !important;
  padding: 0;
  margin: 0;
  position: fixed;
  left: 0;
  bottom: 0;
}

.auth-register .auth-page-main {
  margin-left: 0%;
  overflow-x: hidden;
}

.auth-register .form input[type="text"],
.auth-register .form input[type="password"],
.auth-register .form input[type="email"] {
  background: rgba(0, 98, 255, 0.06) !important;
  border-radius: 8px;
  border: none !important;
  height: 51.13px !important;
}

.auth-register .form-check-input {
  background: rgba(0, 98, 255, 0.06);
  border-color: rgba(0, 98, 255, 0.06);
  -webkit-appearance: none;
}

.auth-register .form .input-group-prepend {
  border: none;
}

.auth-register .form .input-group-prepend span {
  background: #e8f0fe !important;
  outline: none;
  border: none;
  border-radius: 8px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0;
}

.auth-register .form .input-group-append span {
  background: #e8f0fe !important;
  outline: none;
  border: none;
  border-radius: 8px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0;
}

.auth-register .form label {
  color: #b6b6b6 !important;
}

.auth-register .form input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.auth-register .form button.submit {
  background: #0062ff;
  border-radius: 8px;
  filter: drop-shadow(0px 6.19142px 20.1221px rgba(0, 0, 0, 0.12));
  height: 48px;
  border: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.auth-register .form-check-input:checked {
  background-color: #0062ff;
  border-color: #0062ff;
}

.auth-register .notice-card {
  background: rgba(255, 242, 242, 0.13);
  mix-blend-mode: normal;
  backdrop-filter: blur(100px);
  border-radius: 10px;
  color: #fff;
  font-weight: 400 !important;
  padding: 25px;
}

.auth-register .auth-page-sidebar-inner {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  padding-bottom: 50px;
}

.auth-register .notice-card-tooltip {
  width: 238px;
  height: 45px;
  background: #0061f7;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}

.auth-register .btn:disabled {
  pointer-events: auto;
  cursor: no-drop !important;
}

.auth-register .input-group-append {
  margin-left: 0 !important;
}

.auth-register label small {
  margin-left: 2px;
}

.auth-register input::placeholder {
  font-size: 13px;
}

.auth-register input[type="text"]:focus::placeholder,
.auth-register input[type="email"]:focus::placeholder {
  font-size: 15px;
  transition: font-size 0.2s ease-in;
}

.auth-register input:-webkit-autofill,
.auth-register input:-webkit-autofill:hover,
.auth-register input:-webkit-autofill:focus,
.auth-register textarea:-webkit-autofill,
.auth-register textarea:-webkit-autofill:hover,
.auth-register textarea:-webkit-autofill:focus,
.auth-register select:-webkit-autofill,
.auth-register select:-webkit-autofill:hover,
.auth-register select:-webkit-autofill:focus {
  -webkit-text-fill-color: #495057;
  -webkit-background-color: rgba(0, 98, 255, 0.06);
  transition: background-color 5000s ease-in-out 0s;
}
@media screen and (max-width: 959px) {
  .auth-register .form-body {
    padding: 25px;
  }

  .auth-register .auth-page-sidebar {
    display: none;
  }

  .auth-register .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .auth-register .form-area-body {
    max-width: 482.13px;
  }

  .auth-register .auth-page-main {
    margin-left: 42%;
    overflow-x: hidden;
  }
}

@media (max-width: 540px) {
  .auth-register {
    /* remove col padding  */
    /* reduce form body padding  */
    /* show mobile svgs and disable desktop svg  */
    /* reconfigure the form area top  */
    /* header transformation  */
    /* subtitle transformation  */
  }

  .auth-register .col,
  .auth-register .col-1,
  .auth-register .col-10,
  .auth-register .col-11,
  .auth-register .col-12,
  .auth-register .col-2,
  .auth-register .col-3,
  .auth-register .col-4,
  .auth-register .col-5,
  .auth-register .col-6,
  .auth-register .col-7,
  .auth-register .col-8,
  .auth-register .col-9,
  .auth-register .col-auto,
  .auth-register .col-lg,
  .auth-register .col-lg-1,
  .auth-register .col-lg-10,
  .auth-register .col-lg-11,
  .auth-register .col-lg-12,
  .auth-register .col-lg-2,
  .auth-register .col-lg-3,
  .auth-register .col-lg-4,
  .auth-register .col-lg-5,
  .auth-register .col-lg-6,
  .auth-register .col-lg-7,
  .auth-register .col-lg-8,
  .auth-register .col-lg-9,
  .auth-register .col-lg-auto,
  .auth-register .col-md,
  .auth-register .col-md-1,
  .auth-register .col-md-10,
  .auth-register .col-md-11,
  .auth-register .col-md-12,
  .auth-register .col-md-2,
  .auth-register .col-md-3,
  .auth-register .col-md-4,
  .auth-register .col-md-5,
  .auth-register .col-md-6,
  .auth-register .col-md-7,
  .auth-register .col-md-8,
  .auth-register .col-md-9,
  .auth-register .col-md-auto,
  .auth-register .col-sm,
  .auth-register .col-sm-1,
  .auth-register .col-sm-10,
  .auth-register .col-sm-11,
  .auth-register .col-sm-12,
  .auth-register .col-sm-2,
  .auth-register .col-sm-3,
  .auth-register .col-sm-4,
  .auth-register .col-sm-5,
  .auth-register .col-sm-6,
  .auth-register .col-sm-7,
  .auth-register .col-sm-8,
  .auth-register .col-sm-9,
  .auth-register .col-sm-auto,
  .auth-register .col-xl,
  .auth-register .col-xl-1,
  .auth-register .col-xl-10,
  .auth-register .col-xl-11,
  .auth-register .col-xl-12,
  .auth-register .col-xl-2,
  .auth-register .col-xl-3,
  .auth-register .col-xl-4,
  .auth-register .col-xl-5,
  .auth-register .col-xl-6,
  .auth-register .col-xl-7,
  .auth-register .col-xl-8,
  .auth-register .col-xl-9,
  .auth-register .col-xl-auto {
    padding: 0 15px;
  }

  .auth-register .mobile_img {
    display: block;
    text-align: center;
    margin-bottom: 26px;
  }

  .auth-register .web_img {
    display: none;
  }

  .auth-register .form-area-top {
    justify-content: flex-end;
    height: auto;
  }

  .auth-register .form-header h4 {
    font-size: 30px;
    line-height: 24px;
  }

  .auth-register .form-header .subtitle {
    font-size: 14px;
    line-break: 14px;
  }
}
