/*!************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/react-toastify/dist/ReactToastify.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0px;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container[data-stacked='true'] {
    width: 100vw;
  }
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/features/auth/login/login.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
.login-auth {
  --auth-button-height: 48px;
  --auth-field-height: 56px;
  --auth-field-width: 720px;
  --auth-field-gap: 16px;
  --auth-image-height: 736px;
  --auth-image-width: 640px;
  --auth-mobile-code-width: 105px;
  --auth-modal-height: 768px;
  --auth-modal-width: 1328px;

  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  /* overflow-y: auto; */
  padding: 32px 20px;
  background:
    radial-gradient(circle at 14% 28%, rgba(13, 47, 184, 0.55), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(0, 12, 70, 0.82), transparent 38%),
    linear-gradient(135deg, #05145c 0%, #020817 58%, #000000 100%);
}

.login-auth::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.16) 48%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    rgba(0, 20, 88, 0.38);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  content: "";
}
body[dir="rtl"] .login-auth__dialog {
  padding: 14px 14px 14px 32px;
  gap: 40px
}
.login-auth__dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, var(--auth-image-width)) minmax(
      0,
      var(--auth-field-width)
    );
  grid-gap: 60px;
  gap: 60px;
  justify-content: space-between;
  align-items: stretch;
  width: min(100%, var(--auth-modal-width));
  min-height: var(--auth-modal-height);
  border-radius: 16px;
  padding: 14px 32px 14px 14px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.login-auth__media {
  position: relative;
  width: min(100%, var(--auth-image-width));
  min-height: var(--auth-image-height);
  overflow: hidden;
  border-radius: 11px;
  color: #ffffff;
  background: transparent;
}

.login-auth__media::after {
  position: absolute;
  inset: 0;
  display: none;
  content: "";
}

.login-auth__media-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.login-auth__media-overlay {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  display: grid;
  justify-items: center;
  grid-gap: 26px;
  gap: 26px;
  text-align: center;
}

.login-auth__media-title {
  max-width: 340px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.login-auth__slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.login-auth__slider-dots span {
  display: block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.login-auth__slider-dots .login-auth__slider-dot--active {
  background: #ffffff;
}

.login-auth__controls {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-auth__language-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}

.login-auth__language-option {
  min-width: 36px;
  height: 32px;
  border: 1px solid rgba(0, 27, 134, 0.2);
  border-radius: 8px;
  padding: 0 10px;
  color: #001b86;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.login-auth__language-option--active {
  border-color: #001b86;
  color: #ffffff;
  background: #001b86;
}

.login-auth__language-option:hover:not(.login-auth__language-option--active) {
  border-color: #001b86;
  background: rgba(0, 27, 134, 0.06);
}

[dir="rtl"] .login-auth__controls {
  right: auto;
  left: 28px;
}

[dir="rtl"] .login-auth__language-controls {
  margin-right: 0;
  margin-left: 4px;
}

.login-auth__icon-button {
  width: 50px;
  height: 50px;
  border: 0;
  padding: 0;
  background-color: transparent;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  cursor: pointer;
  opacity: 1;
}

.login-auth__icon-button:hover {
  opacity: 0.82;
}

.login-auth__icon-button--back {
  background-image: url("/assets/auth-back.png");
}

.login-auth__icon-button--close {
  background-image: url("/assets/auth-close.png");
}

.login-auth__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, var(--auth-field-width));
  margin: 0 auto;
  padding: 80px 0 38px;
}

.login-auth__header {
  margin-bottom: 22px;
}

.login-auth__title {
  width: min(100%, 471px);
  min-height: 80px;
  margin: 0;
  color: #000000;
  font-family: "Segoe UI", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 1;
}

.login-auth__subtitle {
  width: min(100%, 277px);
  min-height: 32px;
  margin: 12px 0 0;
  color: #000000;
  font-family: "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
  opacity: 1;
}

.login-auth__subtitle--account-switch {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.login-auth__subtitle--wide {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.login-auth__fields {
  display: grid;
  grid-gap: var(--auth-field-gap);
  gap: var(--auth-field-gap);
}

.login-auth__form--signup .login-auth__fields {
  height: calc((var(--auth-field-height) * 5) + (var(--auth-field-gap) * 4));
  overflow-x: hidden;
  overflow-y: auto;
  /* scrollbar-width: none; */
}

/* .login-auth__form--signup .login-auth__fields::-webkit-scrollbar {
  display: none;
} */

.login-auth__split-row,
.login-auth__phone-row {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.login-auth__split-row {
  grid-template-columns: 1fr 1fr;
}

.login-auth__phone-row {
  grid-template-columns: var(--auth-mobile-code-width) 1fr;
}

.login-auth__field {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  margin: 0;
}

.login-auth__field--flush {
  min-width: 0;
}

.login-auth__input,
.login-auth__select {
  width: 100%;
  height: var(--auth-field-height);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  padding: 0 18px;
  color: #161b26;
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4 0% 0% no-repeat padding-box;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  opacity: 1;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.login-auth__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/assets/auth-dropdown.png");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 17.17px 9.46px;
  color: #697184;
}
body[dir='rtl'] input[type="tel" i] {
  direction: rtl;
}
body[dir="rtl"] input::placeholder {
  text-align: right; /* browser support varies */
}
body[dir="rtl"] .login-auth__select {
  background-position: left 8px center
}

.login-auth__custom-select {
  position: relative;
  min-width: 0;
}

.login-auth__custom-select--code {
  width: var(--auth-mobile-code-width);
}

.login-auth__custom-select-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
}

.login-auth__custom-select-menu {
  position: fixed;
  z-index: 9999;
  max-height: 190px;
  overflow-y: auto;
  border: 1px solid rgba(0, 40, 240, 0.14);
  border-radius: 10px;
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.login-auth__custom-select--code .login-auth__custom-select-menu {
  min-width: max-content;
}

/* body[dir="rtl"] .login-auth__custom-select-button {
  justify-content: flex-end;
  text-align: right;
} */

body[dir="rtl"] .login-auth__custom-select-menu {
  direction: rtl;
}

body[dir="rtl"] .login-auth__custom-select-option {
  text-align: right;
}

.login-auth__custom-select-option {
  width: 100%;
  border: 0;
  border-radius: 7px;
  padding: 9px 10px;
  color: #161b26;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.login-auth__custom-select-option:hover {
  background: #f4f4f4;
}

.login-auth__select--code {
  width: var(--auth-mobile-code-width);
  padding: 0 34px 0 14px;
  background-position: calc(100% - 12px) 50%;
  background-size: 17.17px 9.46px;
}

.login-auth__input--date {
  padding-right: 52px;
  background-image: url("/assets/auth-calendar.png");
  background-position: calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 21.28px 23.65px;
}

.login-auth__date-button {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
}

.login-auth__date-button--placeholder {
  color: #8d95a5;
}

.login-auth__date-picker {
  position: fixed;
  z-index: 9999;
  border: 1px solid rgba(0, 40, 240, 0.14);
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.login-auth__date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #161b26;
  font-weight: 700;
}

.login-auth__date-picker-header button,
.login-auth__date-picker-day {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.login-auth__date-picker-header button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #0028f0;
  font-size: 22px;
}

.login-auth__date-picker-header button:hover,
.login-auth__date-picker-day:hover {
  background: #f4f4f4;
}

.login-auth__date-picker-selects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(76px, 0.8fr);
  grid-gap: 6px;
  gap: 6px;
  min-width: 0;
}

.login-auth__date-picker-selects select {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 6px 8px;
  color: #161b26;
  background: #f4f4f4;
  font: inherit;
  cursor: pointer;
}

.login-auth__date-picker-weekdays,
.login-auth__date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 4px;
  gap: 4px;
}

.login-auth__date-picker-weekdays {
  margin-bottom: 6px;
  color: #697184;
  font-size: 12px;
  text-align: center;
}

.login-auth__date-picker-day {
  height: 32px;
  border-radius: 8px;
  color: #161b26;
  font: inherit;
}

.login-auth__input::placeholder {
  color: #8d95a5;
  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
}

.login-auth__input:focus,
.login-auth__select:focus {
  border-color: #0a37ff;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 55, 255, 0.12);
}

.login-auth__input[aria-invalid="true"],
.login-auth__select[aria-invalid="true"] {
  border-color: #dc2626;
}

.login-auth__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  color: #111111;
  font-size: 1rem;
  font-weight: 750;
}

.login-auth__separator--center {
  margin: 8px 0 12px;
  text-align: center;
  font-weight: 700;
}

.login-auth__forgot {
  align-self: flex-end;
  border: 0;
  margin: 8px 0 14px;
  padding: 0;
  color: #001b86;
  background: transparent;
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}
.login-auth__link_btn {
  background: #001b86;
  border: 2px solid #001b86;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 10px;
}
.login-auth__link {
  border: 0;
  padding: 0;
  color: #001b86;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.login-auth__link:hover,
.login-auth__forgot:hover {
  color: #0a37ff;
}

.login-auth__back-button {
  border: 2px solid #001b86 !important;
  color: #001b86 !important;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 10px;
}
/* .login-auth__back-button:hover {
  background: #001b86;
  color: #ffffff !important;
  font-weight: 400 !important;
} */

.login-auth__submit {
  width: 100%;
  height: var(--auth-button-height);
  border-radius: 15px;
  padding: 2px 18px;
  font-family: "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  cursor: pointer;
}

.login-auth__fields + .login-auth__submit {
  margin-top: 34px;
}

.login-auth__submit {
  border: 0;
  color: #ffffff;
  background: #0028f0 0% 0% no-repeat padding-box;
  box-shadow: 0 14px 34px rgba(10, 55, 255, 0.22);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.login-auth__submit:hover:not(:disabled) {
  transform: translateY(-1px);
}

.login-auth__submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.login-auth__microsoft {
  width: 100%;
  height: var(--auth-button-height);
  border: 1px solid #0028f0;
  border-radius: 15px;
  margin-top: 8px;
  padding: 2px 18px;
  color: #0028f0;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.login-auth__microsoft:hover:not(:disabled) {
  transform: translateY(-1px);
}

.login-auth__microsoft:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.login-auth__back-button {
  border: 1px solid #0028f0;
  margin-top: 8px;
  color: #0028f0;
  background: #ffffff;
  opacity: 1;
}

.login-auth__alert {
  margin-bottom: 14px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #b91c1c;
  background: #fef2f2;
  font-size: 0.85rem;
  font-weight: 700;
}

.login-auth__error {
  color: #dc2626;
  font-size: 0.78rem;
  line-height: 1.35;
}

.login-auth__error--center {
  text-align: center;
}

.login-auth__field--password {
  margin-bottom: 0;
}

.login-auth__password-input-wrap {
  position: relative;
  width: 100%;
}

.login-auth__input--password {
  padding-right: 52px;
}

.login-auth__password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: #697184;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.login-auth__password-toggle:hover {
  color: #001b86;
  background: rgba(0, 27, 134, 0.08);
}

.login-auth__password-toggle:focus-visible {
  outline: 2px solid #0a37ff;
  outline-offset: 2px;
}

.login-auth__password-toggle-icon {
  width: 20px;
  height: 20px;
}

.login-auth__password-requirements {
  margin: -4px 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 40, 240, 0.12);
  border-radius: 10px;
  background: rgba(0, 40, 240, 0.03);
}

.login-auth__password-requirements-title {
  margin: 0 0 8px;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
}

.login-auth__password-requirements-list {
  margin: 0;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
}

body[dir="rtl"] .login-auth__password-requirements-title,
body[dir="rtl"] .login-auth__password-requirement {
  text-align: right;
}

.login-auth__password-requirement {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.45;
}

.login-auth__password-requirement--met {
  color: #15803d;
}

.login-auth__otp-group {
  display: grid;
  justify-items: center;
  grid-gap: 10px;
  gap: 10px;
  margin: 30px 0 38px;
}
body[dir="rtl"] .login-auth__otp-inputs {
  direction: ltr
}
.login-auth__otp-inputs {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.login-auth__otp-input {
  width: 71px;
  height: var(--auth-field-height);
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
  color: #111827;
  background: #f4f4f4;
  text-align: center;
  font-size: 1rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.login-auth__otp-input:focus {
  border-color: #0a37ff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 55, 255, 0.12);
}

.login-auth__resend {
  margin: 26px 0 0;
  color: #050505;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 750;
}

.login-auth__resend span {
  color: #001b86;
}

.login-auth__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

@media (min-width: 901px) and (max-width: 1200px) {
  .login-auth {
    --auth-button-height: 38px;
    --auth-field-gap: 10px;
    --auth-field-height: 48px;
    --auth-field-width: 430px;
    --auth-image-height: 552px;
    --auth-image-width: 480px;
    --auth-mobile-code-width: 92px;

    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    padding: 16px;
  }
  .login-auth__dialog {
    grid-template-columns: var(--auth-image-width) var(--auth-field-width);
    gap: 18px;
    align-items: start;
    justify-content: center;
    width: min(100%, 960px);
    min-height: 0;
    padding: 12px 18px 12px 12px;
  }

  .login-auth__media {
    min-height: var(--auth-image-height);
  }

  .login-auth__controls {
    top: 22px;
    right: 22px;
  }

  .login-auth__icon-button {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }

  .login-auth__form {
    padding: 38px 0 18px;
  }

  .login-auth__header {
    margin-bottom: 12px;
  }

  .login-auth__title {
    min-height: 48px;
    font-size: 38px;
    line-height: 48px;
  }

  .login-auth__subtitle {
    min-height: 20px;
    margin-top: 4px;
    font-size: 15px;
    line-height: 20px;
  }

  .login-auth__input,
  .login-auth__select,
  .login-auth__input::placeholder {
    font-size: 15px;
    line-height: 20px;
  }

  .login-auth__fields + .login-auth__submit {
    margin-top: 14px;
  }

  .login-auth__form--signup .login-auth__fields {
    height: calc((var(--auth-field-height) * 4.35) + (var(--auth-field-gap) * 4));
  }

  .login-auth__submit,
  .login-auth__back-button {
    border-radius: 10px;
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 900px) {
  .login-auth {
    --auth-button-height: 40px;
  }

  .login-auth__dialog {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px;
  }

  .login-auth__controls {
    top: 26px;
    right: 26px;
  }

  .login-auth__icon-button {
    width: 44px;
    height: 44px;
    background-size: 44px 44px;
  }

  .login-auth__media {
    width: 100%;
    min-height: 380px;
  }

  .login-auth__form {
    width: min(100%, 520px);
    padding: 24px 8px 18px;
  }

}

@media (max-width: 560px) {
  .login-auth {
    --auth-button-height: 38px;
    --auth-field-height: 50px;
    padding: 10px;
  }

  .login-auth__dialog {
    gap: 14px;
    width: 100%;
    border-radius: 14px;
    padding: 10px;
  }

  .login-auth__controls {
    top: 18px;
    right: 18px;
    gap: 8px;
  }

  .login-auth__icon-button {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }

  .login-auth__media {
    min-height: clamp(260px, 48vh, 320px);
  }

  .login-auth__split-row,
  .login-auth__phone-row {
    grid-template-columns: 1fr;
  }

  .login-auth__title {
    padding-right: 72px;
    white-space: normal;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/user-session.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.user-session {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  background:
    radial-gradient(circle at 14% 28%, rgba(13, 47, 184, 0.55), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(0, 12, 70, 0.82), transparent 38%),
    linear-gradient(135deg, #05145c 0%, #020817 58%, #000000 100%);
}

.user-session__card {
  width: min(100%, 520px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(3, 12, 48, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  color: #f8fafc;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}

.user-session__eyebrow {
  margin: 0 0 8px;
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.user-session__name {
  margin: 0 0 24px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.user-session__details {
  display: grid;
  grid-template-columns: minmax(88px, 120px) 1fr;
  grid-gap: 12px 16px;
  gap: 12px 16px;
  margin: 0 0 28px;
}

.user-session__details dt {
  margin: 0;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
}

.user-session__details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.975rem;
}

.user-session__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
}

.user-session__continue {
  width: 100%;
  min-height: 48px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.user-session__continue:hover {
  background: #1d4ed8;
}

.user-session__logout {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #0b1f66;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.user-session__logout:hover {
  background: #dbeafe;
}

/*!**************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/home.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************/
.app-shell {
  min-height: 100vh;
}

.app-shell--loading {
  background: #020817;
}

