html{
  height: 100%;
}


.login-content {
  width: 30%;
  height: 70%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background-color: white;
  border-radius: 1.5em;
  box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.24);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
form {
  width: 80%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 10%);
}

.profile-avatar,  .profile-avatar-2{
  width: 25%;
  position: absolute;
  top: 10%;
  left: 50%;
  box-shadow: 0px 1px 5px 4px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -20%);
}

.profile-avatar-2 {
  animation-name: avFadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-direction: alternate;
}

@keyframes avFadeInOut {
  0% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

h2 {
  margin: 15px 0;
  color: #333;
  font-family: 'Ubuntu', sans-serif;
  font-weight: bold;
  font-size: 45px;
}

.input-div {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid #d9d9d9;
}

.input-div.one {
  margin-top: 0;
}

.i {
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i {
  transition: .3s;
}

.input-div>div {
  position: relative;
  height: 45px;
}

.input-div>div>h5 {
  position: absolute;
  left: 10px;
  top: -15%;
  transform: translateY(-50%);
  font-family: 'Ubuntu', sans-serif;
  color: #999;
  font-size: 18px;
  transition: .3s;
}

.input-div:before, .input-div:after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #83a4d4;
  transition: .4s;
}

.input-div:before {
  right: 50%;
}

.input-div:after {
  left: 50%;
}

.input-div.focus:before, .input-div.focus:after {
  width: 50%;
}

.input-div.focus>div>h5 {
  top: -11px;
  font-size: 13px;
}

.input-div.focus>.i>i {
  color: #83a4d4;
}

.input-div>div>input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  color: #555;
  font-family: 'Ubuntu', sans-serif;
}

.input-div.pass {
  margin-bottom: 4px;
}

a {
  display: block;
  text-align: right;
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
  transition: .3s;
}

a:hover {
  color: #333;
}

.btn {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  outline: none;
  border: none;
background-color: #83a4d4;
  background-size: 200%;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'Ubuntu';
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: .5s;
}

.btn:hover {
  box-shadow: 1px 1px 10px 1px #83a4d4;

}

`
