body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*  background-image: url("/splash.png");
  background-color: #220052;
*/

* {
  margin: 0;
  padding: 0;
}

section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 536px;
  margin: auto;
  position: relative;
}

section:before {
  content: "";
  position: absolute;
  background: url("/img/efinity-logo-white.png") no-repeat;
  background-size: 100%;
  width: 100%;
  height: 402px;
  z-index: -1;
}

.logo {
  background: url("/logo.png") no-repeat;
  width: 160px;
  height: 56px;
  background-size: 100%;
  margin-bottom: 25px;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 1.3s forwards;
}

.title {
  /* background: url("/efinity-audiowide-white.png") no-repeat; */
  width: 350px;
  height: 48px;
  background-size: 100%;
  font-weight: bold;
  font-size: 40px;
  /*opacity: 0;*/
   animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 0.2s forwards;
}

.subtitle {
  margin-top: 25px;
  color: #FFF;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.5;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 0.5s forwards;
}


a {
  color: inherit;
  text-decoration: underline;
}

p {
  margin: 0.83rem 0;
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 0.2%;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

form {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

input {
  display: block;
  appearance: none;
  outline: 0;
  border: 1px solid #FFFFFF;
  background-color: rgba(255, 255, 255, .2);
  width: 250px;

  border-radius: 3px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  text-align: center;
  font-size: 18px;

  color: white;

  transition-duration: 0.25s;
  font-weight: 300;
}

input :focus{

   width: 300px;

   color: #FFFFFF;
 }

button{
  appearance: none;
  outline: 0;
  background-color: white;
  border: 0;
  padding: 10px 15px;
  color: #305CAB;
  border-radius: 3px;
  width: 286px;
  cursor: pointer;
  font-size: 18px;
  transition-duration: 0.25s;
}
 button:hover{
   background-color: #305CAB;
   color: #FFFFFF;
 }
