/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  --color-body: #425466;
  --color-dark: #0A2540;
  --color-light: #DFE4EA;
  --color-custom: #425466;
  --color-primary: #5261F5;
  --container-padding: 1.5em;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body, body > div {
  height: 100%;
  overflow: auto;
}

body {
  background-image: url("/auth/bg-gradient.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 16px;
  font-family: "Satoshi", sans-serif;
  color: var(--color-body);
}

input, button {
  border: none;
  outline: none;
}

input {
  display: block;
}

.bg-bottom-shape {
  height: 60vh;
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  z-index: -1;
}
.bg-bottom-shape img {
  display: block;
  min-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container-px {
  padding-inline: var(--container-padding);
}

.container-py {
  padding-block: var(--container-padding);
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.ml-auto {
  margin-left: auto;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 0.65em 0.9em;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn.rounded {
  border-radius: 30px;
}

.page-logo {
  text-align: center;
  margin-top: 3.5em;
  margin-bottom: 3em;
}

.page-content {
  margin: 0 10em;
}

.sign-in-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sign-in-form {
  background: #FFFFFF;
  border: 1px solid #DFE4EA;
  -webkit-box-shadow: 0px 100px 120px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 100px 120px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 400px;
  padding: 36px;
  margin-bottom: 10em;
}
.sign-in-form.signup-form {
  max-width: 460px;
}
.sign-in-form .form-title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0.75em;
  letter-spacing: -0.035em;
}
.sign-in-form .reset-pwd-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-body);
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0.8;
  margin-top: 0.25em;
}
.sign-in-form .reset-pwd-link:hover {
  opacity: 1;
}
.sign-in-form .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5em;
}
.sign-in-form .form-footer.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sign-in-form .form-footer .link {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-body);
  text-decoration: none;
}
.sign-in-form .form-footer .link a {
  color: var(--color-primary);
  text-decoration: none;
}
.sign-in-form .form-footer .link a:hover {
  text-decoration: underline;
}
.sign-in-form .form-footer .btn {
  white-space: nowrap;
}
.sign-in-form .auth-info {
  margin-top: -0.75em;
  margin-bottom: 1.25em;
}
.sign-in-form .form-agree-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  margin-bottom: 0.75em;
}
.sign-in-form .form-agree-input input {
  margin-top: 0.25em;
  accent-color: var(--color-primary);
}

.input-group label, .input-group input {
  display: block;
  width: 100%;
}
.input-group label {
  font-weight: 700;
  font-size: 12px;
  color: var(--color-body);
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.input-group input {
  border: 1px solid #DFE4EA;
  -webkit-box-shadow: 0px 10.9041px 23.7908px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 10.9041px 23.7908px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  height: 44px;
  padding: 0.5em 1em;
}

.input-group-w-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5em;
}
.input-group-w-btn .input-group {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0;
  text-align: left;
}
.input-group-w-btn .btn {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: auto;
  height: 44px;
  padding-inline: 1.5em !important;
}

.password-strength-bar {
  margin: 0.5em 0;
  background-color: #DFE4EA;
  border-radius: 8px;
  height: 6px;
  display: none;
}
.password-strength-bar .password-strength-progress {
  height: 100%;
  border-radius: 6px;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.password-strength-info {
  display: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-body);
}

.input-group .password-input {
  position: relative;
}
.input-group .password-input .icon {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.input-group .password-input input {
  padding-right: 3em;
}

.footer-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.page-footer {
  background-color: #DFE4EA;
  padding: 2em 5em;
  border-radius: 1em;
  min-height: 145px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  margin-top: -5em;
}
.page-footer .powered-by-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-body);
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.footer-socials .social-item {
  --size: 42px;
  height: var(--size);
  width: var(--size);
  line-height: var(--size);
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--color-body);
  color: #FAFAFA;
}
.footer-socials .social-item .bi-linkedin {
  font-size: 20px;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(46, 50, 53, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-wrapper .modal-content {
  width: 95%;
  max-width: 325px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 80px 100px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 80px 100px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.5em;
}

.pwd-reset-content-modal {
  text-align: center;
}
.pwd-reset-content-modal .title {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-top: 0.5em;
}
.pwd-reset-content-modal .info {
  margin: 1em auto;
  max-width: 210px;
  font-weight: 700;
  font-size: 18px;
  line-height: 134%;
  color: var(--color-body);
}

.verify-email-modal {
  max-width: 480px !important;
}
.verify-email-modal .info {
  max-width: 390px;
}

.verification-input {
  max-width: 230px;
  margin: auto;
  margin-bottom: 1em;
}

#main {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#main .footer-page-content {
  margin-top: auto;
  margin-bottom: var(--container-padding);
}

@media (max-width: 1300px) {
  .page-content {
    margin: 0 8em;
  }
}
@media (max-width: 1200px) {
  .page-content {
    margin: 0 6em;
  }
}
@media (max-width: 992px) {
  .page-content {
    margin: 0 4em;
  }
}
@media (max-width: 576px) {
  .sign-in-form .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
  .sign-in-form .form-footer .btn {
    justify-self: flex-start;
    width: 100%;
    padding: 0.75em;
  }
  .page-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-content {
    margin: 0;
  }
  .page-content .col.main {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
