/* [project]/src/style/navbar/Navbar.scss.css [app-client] (css) */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  display: flex;
}

.navbar__left, .navbar__logo--mobile {
  align-items: center;
  display: flex;
}

.navbar__logo--mobile img {
  width: auto;
  max-height: 28px;
}

.navbar__logo--desktop {
  align-items: center;
  display: none;
}

.navbar__logo--desktop img {
  width: auto;
  max-height: 32px;
}

.navbar__right {
  align-items: center;
  gap: 12px;
  display: flex;
}

.navbar__user-email {
  color: #3b3b3b;
  font-size: 14px;
  display: none;
}

.navbar__icon-btn {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.navbar__icon-btn img {
  width: auto;
  max-height: 22px;
}

.navbar__menu-btn {
  display: flex;
}

.navbar__dropdown-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.navbar__dropdown {
  z-index: 1000;
  background: #fff;
  border: 1px solid #d5d5e0;
  border-radius: 10px;
  min-width: 210px;
  margin-top: 8px;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 12px 30px #0000002e;
}

.navbar__dropdown--lang {
  min-width: 180px;
}

.navbar__dropdown-link {
  color: #161616;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
  display: block;
}

.navbar__dropdown-link:hover {
  background: #f5f6fb;
}

.navbar__dropdown-link--logout {
  border-top: 1px solid #e2e4f0;
  margin-top: 4px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .navbar {
    height: 70px;
    padding: 0 24px;
  }

  .navbar__user-email {
    display: inline;
  }

  .navbar__logo--mobile {
    display: none;
  }

  .navbar__logo--desktop {
    display: flex;
  }

  .navbar__icon-btn img {
    max-height: 24px;
  }

  .navbar__logo--desktop img {
    max-height: 36px;
  }
}

/* [project]/src/style/footer/Footer.scss.css [app-client] (css) */
.footer {
  color: #61779e;
  background: #fff;
  border-top: 1px solid #e4e9f0;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 24px;
  display: flex;
}

.footer-inner {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  display: flex;
}

.footer-copy {
  text-align: center;
}

.footer-links {
  text-align: center;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 16px;
  display: grid;
}

.footer-links a {
  color: #1c1c1c;
  text-decoration: none;
}

.footer-links a:hover {
  color: #2b76ff;
}

.footer-links a:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 576px) {
  .footer-links {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 16px 32px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: nowrap;
    gap: 20px;
    display: flex;
  }

  .footer-links a:last-child {
    grid-column: auto;
  }
}

@media (min-width: 992px) {
  .footer {
    padding: 16px 40px;
    font-size: 14px;
  }

  .footer-inner {
    gap: 24px;
  }
}

/* [project]/src/style/components/loginModal.scss.css [app-client] (css) */
.login-modal-wrapper {
  color: #1c1c1c;
  background: #fff;
  border: 1px;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 343px;
  min-height: 148px;
  display: flex;
}

@media (min-width: 768px) {
  .login-modal-wrapper {
    width: unset;
    flex-direction: row;
    min-width: 750px;
    min-height: 440px;
  }

  .login-modal-wrapper.page-1, .login-modal-wrapper.page-2 {
    width: unset;
    min-width: 750px;
    min-height: unset;
    flex-direction: row;
    height: 380px;
  }
}

.login-modal-wrapper.page-1 .card-content-right, .login-modal-wrapper.page-2 .card-content-right {
  min-height: 328px;
}

@media (min-width: 768px) {
  .login-modal-wrapper.page-1 .card-content-right, .login-modal-wrapper.page-2 .card-content-right, .login-modal-wrapper.page-1 .card-content-left, .login-modal-wrapper.page-2 .card-content-left {
    min-height: 380px;
  }
}

.login-modal-wrapper.page-2 .card-content-right .sub-title {
  font-size: 14px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .login-modal-wrapper.page-2 .card-content-right .sub-title {
    font-size: 16px;
    line-height: 28px;
  }
}

.login-modal-wrapper .card-content-left {
  min-width: 300px;
  min-height: 440px;
  display: none;
  position: relative;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-left {
    display: flex;
  }
}

.login-modal-wrapper .card-content-left .card-image {
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 0 20px;
}

.login-modal-wrapper .card-content-mobile {
  min-width: 343px;
  min-height: 148px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-mobile {
    display: none;
  }
}

.login-modal-wrapper .card-content-mobile .card-image {
  object-fit: cover;
  object-position: center;
  border-radius: 20px 20px 0 0;
}

.login-modal-wrapper .card-content-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 440px;
  padding: 24px 16px;
  display: flex;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right {
    min-width: 450px;
    min-height: 440px;
    padding: 32px;
  }
}

.login-modal-wrapper .card-content-right .title {
  flex-direction: column;
  margin-bottom: 16px;
  font-family: Monda, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right .title {
    font-size: 28px;
    line-height: 36px;
  }
}

.login-modal-wrapper .card-content-right .title > span {
  color: #1e6fff;
}

.login-modal-wrapper .card-content-right .sub-title {
  color: #61779e;
  margin-bottom: 16px;
  font-family: Red Hat Display, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right .sub-title {
    max-width: 385px;
  }
}

.login-modal-wrapper .card-content-right .support-container {
  background: #f5f7fa;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 385px;
  margin-bottom: 16px;
  padding: 12px 20px;
  font-family: Red Hat Display, sans-serif;
  font-size: 14px;
  line-height: 24px;
  display: flex;
}

.login-modal-wrapper .card-content-right .support-container .support-image-wrapper {
  width: 24px;
  height: 24px;
  position: relative;
}

.login-modal-wrapper .card-content-right .support-container .support-image-wrapper .support-image {
  object-position: center;
  object-fit: contain;
}

.login-modal-wrapper .card-content-right .support-container .support-text > a {
  cursor: pointer;
  text-decoration: underline;
}

.login-modal-wrapper .card-content-right .inputs {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  display: flex;
}

.login-modal-wrapper .card-content-right .inputs .login-btn-wrap {
  margin-bottom: 20px;
}

.login-modal-wrapper .card-content-right .inputs .login-btn-wrap .button-wrapper.large {
  min-width: 100%;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right .inputs .login-btn-wrap .button-wrapper.large {
    min-width: 385px;
  }
}

.login-modal-wrapper .card-content-right .login-bottom-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 100%;
  font-family: Red Hat Display, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right .login-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 385px;
  }
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left {
  cursor: pointer;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  display: flex;
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left .form-check-input {
  appearance: none;
  cursor: pointer;
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  transition: all .2s;
  position: relative;
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left .form-check-input:hover {
  border-color: #2563eb;
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left .form-check-input:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left .form-check-input:checked:after {
  content: "";
  border: 3px solid #fff;
  border-width: 0 3px 3px 0;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(45deg);
}

.login-modal-wrapper .card-content-right .login-bottom-container .login-bottom-left .form-check-input:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #93c5fd;
}

.login-modal-wrapper .card-content-right .login-bottom-container .forgot-password {
  cursor: pointer;
  text-decoration: underline;
}

.login-modal-wrapper .card-content-right .back-button-container {
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4px;
  min-width: 100%;
  height: 60px;
  font-family: Red Hat Display, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.login-modal-wrapper .card-content-right .back-button-container svg {
  margin: 4px;
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .login-modal-wrapper .card-content-right .back-button-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    min-width: 385px;
  }
}

/* [project]/src/style/components/inputField.scss.css [app-client] (css) */
.input-container {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.input-container .input-wrapper {
  border: 1px solid #98cafe;
  border-radius: 999px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 100%;
  height: 60px;
  padding: 8px 20px;
  font-family: Red Hat Display, sans-serif;
  display: flex;
  position: relative;
}

.input-container .input-wrapper.error {
  border: 1px solid #d2463f;
}

.input-container .input-wrapper.disabled {
  cursor: not-allowed;
  background-color: #f9fafb;
}

.input-container .input-wrapper.disabled input {
  color: #6b7280;
  cursor: not-allowed;
  background-color: #f9fafb !important;
}

.input-container .input-wrapper .icon-wrapper {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  position: relative;
}

.input-container .input-wrapper .icon-wrapper .icon {
  object-fit: contain;
  object-position: center;
}

.input-container .input-wrapper .icon-wrapper:after {
  content: "";
  background-color: #e4e9f0;
  width: 1px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 30px;
}

.input-container .input-wrapper .icon-wrapper.no-line {
  cursor: pointer;
}

.input-container .input-wrapper .icon-wrapper.no-line:after {
  width: 0;
  height: 0;
  display: none;
  left: 0;
}

.input-container .input-wrapper .floating-label {
  color: #61779e;
  pointer-events: none;
  opacity: 0;
  font-size: 14px;
  transition: all .2s;
  position: absolute;
  top: 1px;
  left: 64px;
}

.input-container .input-wrapper.active .floating-label {
  opacity: 1;
  color: #61779e;
  font-size: 12px;
  top: 10px;
}

.input-container .input-wrapper.active input {
  padding-top: 20px;
  padding-bottom: 0;
}

.input-container .input-wrapper input {
  color: #61779e;
  border: none;
  width: -webkit-fill-available;
  padding: 8px 0;
  font-size: 14px;
  line-height: 24px;
  background-color: #fff !important;
}

.input-container .input-wrapper input:focus {
  outline: none;
}

.input-container .input-wrapper input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  background-color: #fff !important;
  box-shadow: inset 0 0 0 1000px #fff !important;
}

.input-container .input-error {
  color: #d2463f;
  font-family: Red Hat Display, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

/* [project]/src/style/components/button.scss.css [app-client] (css) */
.button-wrapper {
  background: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Red Hat Display, sans-serif;
  display: flex;
}

.button-wrapper .download-icon-wrapper {
  width: 20px;
  height: 20px;
  position: absolute;
}

.button-wrapper .download-icon-wrapper .download-icon {
  object-fit: contain;
  object-position: center;
  position: absolute;
  left: -30px !important;
}

.button-wrapper .custom-icon-wrapper {
  align-items: center;
  margin-right: 6px;
  display: flex;
}

.button-wrapper .custom-icon-wrapper .custom-icon {
  width: 16px;
  height: 16px;
}

.button-wrapper .spinner {
  border: 3px solid #d1d5db;
  border-top-color: #2563eb;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: .6s linear infinite spin;
  display: flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button-wrapper button {
  cursor: pointer;
  border-radius: 999px;
  outline: none;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.button-wrapper button:disabled {
  color: #8e9ebb !important;
  background-color: #e4e9f0 !important;
}

.button-wrapper.small {
  min-width: 82px;
  margin-bottom: 0;
}

.button-wrapper.small button {
  width: 82px;
  min-height: 36px;
  font-size: 12px;
  line-height: 20px;
}

.button-wrapper.small.download {
  min-width: 114px;
  margin-bottom: 0;
}

.button-wrapper.small.download button {
  width: 114px;
  min-height: 36px;
  padding-left: 24px;
  font-size: 12px;
  line-height: 20px;
}

.button-wrapper.medium {
  min-width: 107px;
  max-width: 180px;
  min-height: 48px;
}

.button-wrapper.medium button {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 24px;
}

.button-wrapper.large {
  min-width: 385px;
  min-height: 60px;
}

.button-wrapper.large button {
  width: 100%;
  min-height: 60px;
  font-size: 16px;
  line-height: 24px;
}

.button-wrapper.primary button {
  color: #fff;
  background-color: #005efd;
  border: none;
}

.button-wrapper.secondary button {
  color: #005efd;
  background-color: #0000;
  border: 2px solid #005efd;
}

.button-wrapper.custom {
  background: none;
  border: none;
  margin-bottom: 0;
}

.button-wrapper.custom button {
  color: #dc2626;
  background: none;
  border: none;
  border-radius: 0;
  width: auto;
  min-height: auto;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

/*# sourceMappingURL=src_style_db5ed0c9._.css.map*/