/* [project]/src/modules/account/templates/login-3d.css [app-client] (css) */
:root {
  --login-main-color: #cc2121;
  --login-black: #000;
  --login-white: #fff;
  --login-bg: #fff;
  --login-text-primary: #111;
  --login-text-secondary: #666;
  --login-white-smoke: #f5f5f7;
  --login-shadow: 0px 10px 30px #00000014;
}

.login-page-container {
  background-color: var(--login-bg);
  width: 100%;
  min-height: 90vh;
  color: var(--login-text-primary);
  align-items: center;
  padding-top: 20px;
  font-family: Lato, sans-serif;
  display: flex;
}

.login-row {
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
}

.login-left {
  flex-direction: column;
  flex: 0 0 50%;
  justify-content: center;
  max-width: 50%;
  padding: 40px;
  display: flex;
}

.login-right {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  padding: 20px;
  display: flex;
}

.login-logo {
  color: var(--login-text-primary);
  text-transform: capitalize;
  margin-bottom: 30px;
  font-family: Cormorant Garamond, serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
}

.login-logo span {
  color: var(--login-main-color);
}

.login-left .line {
  background-color: var(--login-main-color);
  width: 60px;
  height: 2px;
  margin-bottom: 25px;
  display: block;
}

.login-left h2 {
  color: var(--login-text-primary);
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.1;
}

.login-left h2 span {
  color: var(--login-main-color);
}

.login-left p {
  color: var(--login-text-secondary);
  margin-bottom: 30px;
  font-size: 18px;
}

.card-3d-wrap {
  width: 400px;
  max-width: 100%;
  height: 480px;
  transform-style: preserve-3d;
  perspective: 800px;
  margin-top: 20px;
  position: relative;
}

.card-3d-wrapper {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all .6s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.card-front, .card-back {
  background-color: var(--login-white);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: var(--login-shadow);
  background-image: none;
  border: 1px solid #0000000d;
  border-radius: 32px;
  position: absolute;
  top: 0;
  left: 0;
}

.card-back {
  transform: rotateY(180deg);
}

.center-wrap {
  z-index: 20;
  width: 100%;
  padding: 0 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 35px)perspective(100px);
}

.toggle-container {
  text-align: center;
  margin-bottom: 30px;
}

.toggle-labels {
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
  display: flex;
}

.toggle-labels span {
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  transition: color .3s;
}

.toggle-labels span.active {
  color: var(--login-text-primary);
}

.checkbox-label {
  text-align: center;
  cursor: pointer;
  background-color: #f0f0f0;
  border-radius: 8px;
  width: 60px;
  height: 16px;
  margin: 10px auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-label:before {
  width: 36px;
  height: 36px;
  color: var(--login-white);
  background-color: var(--login-main-color);
  content: "↖";
  z-index: 20;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 36px;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: -10px;
  left: -10px;
  box-shadow: 0 4px 10px #cc21214d;
}

.is-register .checkbox-label:before {
  transform: translateX(44px)rotate(-270deg);
}

.is-register .card-3d-wrapper {
  transform: rotateY(180deg);
}

.form-heading {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: var(--login-text-primary);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.login-form-group {
  margin-bottom: 15px;
  display: block;
  position: relative;
}

.login-form-style {
  letter-spacing: .5px;
  width: 100%;
  height: 52px;
  color: var(--login-text-primary);
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  outline: none;
  padding: 13px 20px 13px 55px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  transition: all .2s;
}

.login-form-style:focus {
  border-color: var(--login-main-color);
  background-color: var(--login-white);
}

.login-input-icon {
  color: var(--login-main-color);
  font-size: 22px;
  position: absolute;
  top: 14px;
  left: 18px;
}

.login-submit-btn {
  background-color: var(--login-main-color);
  text-transform: uppercase;
  width: 100%;
  height: 52px;
  color: var(--login-white);
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  box-shadow: 0 10px 20px #cc212133;
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px #cc21214d;
}

.login-link {
  color: var(--login-text-secondary);
  text-align: center;
  opacity: .7;
  margin-top: 20px;
  font-size: 13px;
  transition: opacity .2s;
  display: block;
}

.login-link:hover {
  opacity: 1;
  color: var(--login-main-color);
}

.social-icon {
  text-size: 11px;
  color: #999;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.social-icon:hover {
  border-color: var(--login-main-color);
  color: var(--login-main-color);
}

@media (width <= 992px) {
  .login-left {
    text-align: center;
    flex: 0 0 100%;
    align-items: center;
    max-width: 100%;
    padding-top: 20px;
  }

  .login-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .login-left h2 {
    font-size: 40px;
  }
}


/*# sourceMappingURL=src_modules_account_templates_login-3d_ef1b3906.css.map*/