.landing {
  height: 1000px;
}

.form-cont {
    padding-top: 40px;
    min-width: 320px;
    max-width: 400px;
    margin: 0 auto;
    height: 900px;
    color: #eaeaea;
}
.form-cont h1 {
    margin: 0 0 40px;
    padding: 0;
    text-align: center;
}

.form-cont .user-box {
    position: relative;
    width: 80%;
    max-width: 300px;
    margin: 0 auto 20px;
}

label {
  color: rgb(255, 80, 80);
}
.login-input {
    color: #eaeaea;
    width: 100%;
    height: 40px;
    padding: 10px 0;
    font-size: 16px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 2.5px;
    outline: none;
    background: transparent;
}

.customLabel {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
    color: #eaeaea;
}

.login-input:focus ~ .customLabel,
.login-input:active ~ .customLabel,
.login-input:valid ~ .customLabel {
    top: -20px;
    left: 0;
    color: #eaeaea;
    font-size: 12px;
}



.form-btn {
    width: 140px;
    margin: 40px auto 0;
}
  .form-btn > button {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #eaeaea;
    background: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    letter-spacing: 4px;
    width: 100%;

    cursor: pointer;
  }
  
  .form-btn > button:hover {
    background: #eaeaea;
    color: #ca17b8;
    border-radius: 5px;
    box-shadow: 0 0 1.25px #eaeaea,
                0 0 6.25px #eaeaea,
                0 0 12.5px #eaeaea,
                0 0 25px #eaeaea;
  }
  
  .form-btn > button span {
    position: absolute;
    display: block;
  }
  
  .form-btn > button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eaeaea);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .form-btn > button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #eaeaea);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .form-btn > button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #eaeaea);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .form-btn > button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #eaeaea);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }







.form-cont p {
    margin: 20px;
}
a {
    text-decoration: none;
}