/* MAIN START */
#reg-page {
  display: block;
}

/* INTRO START */
#intro {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
}

#intro h1 {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 3em;
  letter-spacing: 1.2px;
  color: #f6f6f6;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: blue;
}

#intro h1:before {
  content: '𝚈𝙰𝙳𝙰𝙽𝙰𝚁 𝟸𝙳𝟹𝙳';
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  color: #e17f93;
  text-shadow: none;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: blue;
  animation: brandLoading 3s linear forwards;
}

@keyframes brandLoading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

#me {
  color: #5621cf;
}

#intro .footer-box {
  height: 80px;
  width: 98%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 6px;
}

/* FORGOT START */
.forgot-password {
  cursor: pointer;
  user-select: none;
}

#forgot-password-box {
  height: calc(100% - 57px);
  width: 100%;
  position: fixed;
  top: 57px;
  left: 0;
  padding: 12px;
  margin: 0 !important;
  border-radius: 4px;
  display: none;
  z-index: 9;
}

#forgot-password-box-close {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-field {
  height: 60px;
  width: 100%;
  margin-top: 12px;
  border: 1px solid #e17f93;
  border-radius: 4px;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}

.send-code {
  height: 20px;
  padding: 0 4px;
  border-radius: 2px;
  position: absolute;
  right: 6px;
  top: calc(50% - 10px);
  font-size: .7em;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.input-field small {
  font-size: .8em;
}

#forgot-password-submit {
  height: 45px;
  width: 100%;
  margin-top: 22px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

/* FORM START */
#form {
  width: 100%;
  margin-top: 12px;
}

#form > div {
  height: 45px;
  width: 100%;
  display: flex;
  border: 1px solid #e17f93;
  position: relative;
  margin-top: 12px;
}

#form > div i {
  height: 100%;
  width: 45px;
  border-right: 1px solid #e17f93;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  color: #e17f93;
}

#form > div input {
  width: 100%;
}

#form > div label {
  position: absolute;
  left: 48px;
  top: 13px;
  background: #f6f6f6;
  transition: all .5s;
  font-size: .8em;
}

#form > div .labelup {
  top: -10px;
  padding: 0 4px;
  transform: scale(.8);
  letter-spacing: 1px;
}

.eye {
  position: absolute;
  font-size: 1em;
  right: 2px;
  border: none !important;
}

#form button {
  height: 45px;
  width: 100%;
  margin-top: 12px;
}

.change {
  height: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8em;
  letter-spacing: 1px;
  margin-top: 12px;
}

.change b {
  color: #e17f93;
  margin-left: 6px;
  font-size: 1em;
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
}



/* RESPONSIVE START */
@media (min-width: 767px) {
  #intro, #forgot-password-box {
    width: 767px;
  }
  
  #intro, #forgot-password-box {
    left: calc(50% - 383.5px);
  }
}