@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
html {
  height: 100%;
}
body {
  margin:0;
  padding:0;
  font-family:"Poppins" , sans-serif;
  min-height: 10vh;
  align-items: center;
  justify-content: center;
  padding: 80px; 
}

.login-box {
  
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 55%; 
  width: 500px;
  flex-direction:row;
  display: flex;
  height: 500px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(60, 17, 177, 0.5); 
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(252, 247, 247, 0.6);
  border-radius: 40px; 
  text-align: center;
  justify-content: center;
}

.login-box  {
  margin: 0 ;
  padding: 0; 
  margin-left: -40px;
  margin-top: -5px; 
  color: rgb(3, 0, 0);
  display: flex;
  flex-direction: column;
  text-align: center; 
  justify-content: center;
  
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0; 
  font-size: 16px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: rgb(0, 0, 0);
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}

.nav-item{
  width: 150px;
  font-size:medium;
  font-weight: bolder;
  display: flex;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0865c2;
  background-color:transparent;
  border: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.glow-on-hover {
  width: 320px;
  height: 50px;
  left: 1px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(71, 221, 12);
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
button[type="login"]{
  width: 100%;
  margin: 10px;
  height: 50px;
  border: 1px solid;
  background: #2691d9;
  border-radius: 25px;
  font-size: 18px;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}
button[type="login"]:hover{
  border-color: #2691d9;
  transition: .5s;
}
.signup_link{
  margin: 9px 0;
  text-align: center;
  font-size: 16px;
  color: #666666;
}
.signup_link a{
  color: #2691d9;
  text-decoration: none;
}
.signup_link a:hover{
  text-decoration: underline;
}   
 