.site-container {
  width: 100dvw;
  height: 100dvh;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-container::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3448a9;
  background-image: linear-gradient(
    43deg,
    #3448a9 26%,
    #f21e50 56%,
    #ff771d 66%,
    #00a000 100%
  );

  opacity: 0.45;
  z-index: 0;
}

.card {
  background-color: var(--card-bg);
}

/* Container */

.container {
  position: relative;
  max-width: 60%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .card.alt .title,
.container .card.alt .close,
.container .card.alt .input-container,
.container .card.alt .button-container {
  display: none;
}
.container.active .card:first-child {
  background: var(--hover-bg);
  margin: 0 15px;
}

.container.active .card:nth-child(2) {
  background: var(--primary-color);
  margin: 0 10px;
}

.container.active .card.alt {
  top: 20px;
  right: 0;
  width: 100%;
  min-width: 100%;
  height: auto;
  border-radius: 5px;
  padding: 60px 0 40px;
  overflow: hidden;
}

.container.active .card.alt .toggle {
  position: absolute;
  top: 40px;
  right: -70px;
  box-shadow: none;
  -webkit-transform: scale(14);
  transform: scale(15);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.container.active .card.alt .toggle:before {
  content: "";
}

.container.active .card.alt .title,
.container.active .card.alt .close,
.container.active .card.alt .input-container,
.container.active .card.alt .button-container {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s ease;
  display: block;
  transition: 0.3s ease;
}

.container.active .card.alt .title {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.container.active .card.alt .input-container {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.container.active .card.alt .input-container:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.container.active .card.alt .input-container:nth-child(3) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.container.active .card.alt .button-container {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

/* Card */

.card {
  position: relative;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  /* Title */
  /* Inputs */
  /* Button */
  /* Footer */
  /* Alt Card */
}

.card:first-child {
  background-color: var(--card-bg);
  filter: brightness(90%);
  height: 10px;
  border-radius: 5px 5px 0 0;
  margin: 0 10px;
  padding: 0;
}

.login-form {
  width: 100% !important;
}

.card .title {
  position: relative;
  z-index: 1;
  border-left: 5px solid var(--primary-color);
  margin: 0 0 35px;
  padding: 10px 0 10px 50px;
  color: var(--primary-color);
  text-shadow: 0 2px 3px #0000007e;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.recover-pass {
  margin: 40px 0 0;
  color: #d3d3d3;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.recover-pass a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.recover-pass a:hover {
  color: var(--accent-color);
}

.card.alt {
  position: absolute;
  top: 5%;
  right: -1%;
  z-index: 10;
  width: 80px;
  height: 80px;
  background: none;
  border-radius: 100%;
  box-shadow: none;
  padding: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  /* Toggle */
  /* Title */
  /* Input */
  /* Button */
}

.card.alt .toggle {
  position: relative;
  background: var(--off-dark);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #00a0005c;
  font-size: 42px;
  line-height: 80px;
  text-align: center;
  cursor: pointer;
}

.card.alt .toggle:before {
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.card.alt .title,
.card.alt .close,
.card.alt .input-container,
.card.alt .button-container {
  left: 100px;
  opacity: 0;
  visibility: hidden;
}

.card.alt .title {
  width: 100%;
  padding-right: 20px;
  position: absolute;
  top: 0;
  display: inline;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 2px 3px #0000007e;
}
/* .card.alt .form-input input {
  color: #222;
} */
.close {
  left: 85% !important;
  position: absolute;
  top: 0;
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 400;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 990px) {
  /* Container */
  .container {
    position: relative;
    max-width: 55%;
    width: 100%;
    padding: 0px;
  }
}
@media (max-width: 568px) {
  /* Container */
  .container {
    position: relative;
    max-width: 65%;
    width: 100%;
    padding: 0px;
  }
}
@media (max-width: 352px) {
  /* Container */
  .container {
    position: relative;
    max-width: 85%;
    width: 100%;
    padding: 0px;
  }
}
/**
* Button Css
*/
.auth-btn {
  width: 80%;
}
.auth-btn button {
  outline: 0;
  cursor: pointer;
  position: relative;
  display: inline-block;
  background: 0;
  border: none;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  box-shadow: 0 0 4px 1px var(--shadow-color);
}
@media (max-width: 768px) {
  .auth-btn button {
    font-size: 14px;
  }
}
.auth-btn button span {
  position: relative;
  z-index: 1;
  color: var(--text-off-light);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.auth-btn button:hover,
.auth-btn button:active,
.auth-btn button:focus {
  border-color: var(--primary-color);
}

.auth-btn button:hover span,
.auth-btn button:active span,
.auth-btn button:focus span {
  color: var(--primary-color);
}

.auth-btn button:active span,
.auth-btn button:focus span {
  color: #ffffff;
}

.auth-btn button:active:before,
.auth-btn button:focus:before {
  opacity: 1;
  -webkit-transform: scale(10);
  transform: scale(10);
}

.auth-btn button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
