* {
  outline-width: 0;
  font-family: "Nunito" !important;
  box-sizing: content-box;
}

@keyframes animate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

body {
  height: 100vh;
  width: 100vw;
  background:#23242a ;
  display: flex;
  justify-content: center;
  align-items: center;
}

#formContainer {
  display: flex;
  transition: 0.2s ease;
  height: 402.5px;
  transition-delay: 0.3s;
}

#formContainer.toggle {
  height: 520px;
  transition-delay: 0s;
}

#formContainer.toggle .formRight{
  width: 352px;
}

.formLeft {
  background: #fff;
  border-radius: 5px 0 0 5px;
  padding: 0 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.formLeft img {
  display: block;
  width: 72px;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.formRight {
  position: relative;
  overflow: hidden;
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
}

.formRight:before {
  content: '';
  z-index: -1;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 350px;
  height: 400px;
  transform-origin: bottom right;
  background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
  animation: animate 6s linear infinite;
}

.formRight form {
  width: 350px;
  padding: 25px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  background: #23242a;
  margin-left: 1px;
  margin-top: 1px;
  margin-bottom: 1px;
}

.formRight form header {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.formRight form header h1 {
  margin: 0;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formRight form header p {
  margin: 5px 0 0;
  opacity: 0.5;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formRight form section label {
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.formRight form section label p {
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 12px;
  opacity: 0.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formRight form section label input {
  width: 100%;
  display: block;
  border: none;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 10px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 12px;
}

.formRight form section label input:focus~.border {
  transform: scale(1, 1);
}

.formRight form section label input:not(:-moz-placeholder-shown)~.border {
  transform: scale(1, 1);
}

.verify{width: 108px;position: absolute;right: 0;bottom: 2px;cursor: pointer}

.formRight form section label input:not(:-ms-input-placeholder)~.border {
  transform: scale(1, 1);
}

.formRight form section label input:not(:placeholder-shown)~.border {
  transform: scale(1, 1);
}

.formRight form section label .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transition: 0.2s ease;
}

.formRight form section label:last-child {
  margin-bottom: 0;
}

.formRight form section button {
  background: #00897B;
  border: none;
  width: 100%;
  padding: 10px 0;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.formRight form section button:hover {
  background: #007f72;
}

.formRight form footer {
  margin-top: 15px;
  display: flex;
  text-align: center;
}

.formRight form footer button,.formRight form footer a {
  background: transparent;
  padding: 0;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  flex: 1;
  opacity: 0.5;
}

.formRight form footer button:hover,.formRight form footer a:hover {
  opacity: 1;
}


