:root{
    
    /* --nav-color:#0C1446;
    --sub-menu-color:#175873;
    --nav-hover-color:#4e5f66be; */

    --second-color: #049c9b;

    --nav-color:#049c9b  ;
    --nav-color-transparent:#1b3b3b50 ;
    --sub-menu-color:#0e2b2b;
    --nav-hover-color:#414646;
}

*{
    padding: 0;
    margin: 0;
}
.container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg , #250654 , #960080);
    position: relative;
}
.login-form-outer-container{
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, var(--second-color), var(--sub-menu-color));
    animation: gradient 15s ease infinite;
    width: -moz-available;
    height: inherit;
    
}
.box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 350px;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0px 4px 30px -10px rgb(0 0 0);
}
.box h1{
    text-align: center;
    font-size: 40px;
}
.box form .input_box{
    width: 100%;
    border-width: 0px 0px 2px 0px;
    border-style: solid;
    margin-top: 30px;
    position: relative;
}
.box form .input_box input{
    width: 100%;
    border: none;
    outline: none;
    font-size: 25px;
    padding: 7px 0px;
}
.box form .input_box label{
    position: absolute;
    left: 0px;
    font-size: 25px;
    top: 8px;
    pointer-events: none;
    transition: 0.2s;
}
.box .button{
    margin-top: 30px;
    font-size: 25px;
    padding: 7px 20px;
    color: #fff;
    border: none;
    background-color: #250654;
    float: right;
    cursor: pointer;
}
.box .button:active{
    color: #000;
    background-color: #fff;
}
.box form .input_box input:focus + label,
.box form .input_box input:valid + label{
    top: -15px;
    font-size: 18px;
    color: blue;
}




.login-form-container{
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: 521px;
    background-color: white;
    margin-top: 0px;
    box-shadow: 0 4px 14px hsla(0, 0%, 2%, 0.1);
    border-top: 6px solid var(--text-color);
    border-radius: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.login-form-title{
    display: flex;
    justify-content: center;
    border-bottom: 3px groove var(--bg-color);
    padding: 8px;
    font-size: xx-large;
    font-weight: 900;
}
.login-form-input-control{
    width: -webkit-fill-available;
    width: -moz-available;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 1rem;
    padding: 10px;
    outline: none;
}
.login-form-class{
    padding: 10px;
    padding-left: 37px;
    padding-right: 37px;
}
.login-form-input-control:focus{
    border: 1px solid var(--second-color);
}
.login-form-input-control:hover{
    border: 1px solid var(--container-color);
}
.login-form-submit-group{
    padding: 0px;
}
.login-form-logInbtn{
    width: -webkit-fill-available;
    width: -moz-available;
    height: 3rem;
    margin-left: 50px;
    margin-right: 50px;
    cursor: pointer;
    outline: none;
    font-size: 1rem;
    font-weight: bolder;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px hsla(0, 0%, 2%, 0.1);
    background: var(--second-color);
    color: var(--bg-color);
    transition: 1.2s;
    border-radius: 1rem;
    
}
.login-form-logInbtn-not-allowed{
    cursor: not-allowed;
}
.login-form-logInbtn:hover{
    transform: scale(1.1);
}
.login-container{
    position: absolute;
    top: 35%;
    left: 32%;
    display: block;
    width: 500px;
    
}
.input-extra-btn-container{
    display: contents;
    cursor: pointer;
    transition: 1s ease;
    height: 20px;
}
.logIn-response{
    display: flex;
    color: red;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}
.mySpin{
    
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display:none;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }