.landing {
    background-color: #eaeaea;
    height: 800px;
}
nav {
    color: #ca17b8;
}
.nav-links > li > a {
    color: #ca17b8;
}
#logo > a {
    color: #ca17b8;
}

label {
  color: rgb(255, 80, 80);
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    padding: 40px 20px;
    transform: translate(-50%, -50%);
    background: #3D0EB2;
    color: #eaeaea !important;
    box-shadow: 0 5px 15px rgba(61, 14, 178, 0.6);
    border-radius: 10px;
}
@media screen and (min-width: 550px) {
    .login-box {
        width: 400px;
    }
}
@media screen and (max-width: 340px) {
    .login-box {
        width: 310px;
        padding: 40px 10px;
    }
}
  
.login-box h1 {
    margin: 0 0 40px;
    padding: 0;
    text-align: center;
}
  
  .login-box .user-box {
    position: relative;
    width: 80%;
    max-width: 300px;
    margin: 0 auto 10px;
  }
  
  .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;
}

  .customLabel {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
  }
  
  .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%;
    }
  }
  
  

.login-box p {
    margin-top: 20px;
}



a {
    text-decoration: none;
}