@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: linear-gradient(180deg, #08023f, #000);
}

.container{
     min-height: 100vh;
    height: 100%;
}

@keyframes shine {
    0% {
      border-top-color: #408EC6;
      box-shadow: 0 0 10px rgba(64, 142, 198, 0.3);
    }
    50% {
      border-top-color: #66B2FF; /* brighter version of the base color */
      box-shadow: 0 0 20px rgba(102, 178, 255, 0.7), 0 0 30px rgba(102, 178, 255, 0.4);
    }
    100% {
      border-top-color: #408EC6;
      box-shadow: 0 0 10px rgba(64, 142, 198, 0.3);
    }
  }
  
  .form {
    background: linear-gradient(180deg, #08023f, #000);
    border-top: 6px solid #408EC6;
    border-left: 1px solid #408EC6;
    border-right: 1px solid #408EC6;
    border-bottom: 1px solid #408EC6;
    border-radius: 12px !important;
    padding: 50px 50px;
    animation: shine 4s infinite alternate;
    transition: box-shadow 0.5s;
  }
  
  


.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;

}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    /* border-bottom: 2px solid #ccc; */
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}


.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

/* .input-field input:is(:focus, :valid) ~ i{
} */

.input-field i.icon{
    left: 0;

}

.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}


.form .text{
    color: #c5c7cc;
    font-size: 14px;
}

.form a.text{
    color: #408EC6;
    text-decoration: none;
}

.form a:hover{
    text-decoration: underline;
}

.form .button{
    margin-top: 35px;
}

.btn.btn-primary {
    color: #000 !important;
    background: #408EC6;
    box-shadow: 0 0 0 2px rgba(11, 36, 76, 0.7);
}


.form .login-signup{
    margin-top: 30px;
    text-align: center;
}

