

  
.login-card{
    position: relative;
    width: 410px;
    height: 480px;
    border-radius: 20px;
    background:  rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;

}
 
.h2{
    font-size: 2em;
    color:#007bff ;
    text-align: center;
}
.inputbox{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #007bff;
}
.inputbox label{ 
    position: absolute;
    top: 70%;
    left: 5px;
    transform: translateY(-50%);
    color: #007bff;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}
input:focus ~ label,
input:valid ~ label{
    top: 10px;
}

.inputbox input{
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: -10px 0 5px;
    color: #0056b3;
}


.inputbox ion-icon{
    position: absolute;
    right: 8px;
    color: #007bff;
    font-size: 1.2em;
    top: 25px;
}
.forget{
    margin: -15px 0 15px;
    font-size: .9em;
    color: #007bff;
    display: flex;
    justify-content: center;
}

.forget label input{
    margin-right: 3px;
}
.forget label a{
    color: #007bff;
    text-decoration: none;
}
.forget label a:hover{
    text-decoration: underline;
    color: #0056b3;
}
.button-login{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: #007bff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}
/* .clos-login-btn{
    
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: transparent;
        border: none;
        color: #797775;
        cursor: pointer;
        font-size: 18px;
        cursor:pointer;
        border: none;
      
}
.clos-login-btn:hover{
    background-color: red;
} */
.register{
text-align: center;
cursor: pointer;
}
.register:hover{
    color: blue;
}


/* on main login */
.mainlogin-container2{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image:url('/images/login-bg.jpeg'); */
    /* background-image: linear-gradient(to right, rgb(0, 0, 255), rgb(0, 255, 0)); */
/* background-color: rgb(39, 36, 36); */
background-repeat: no-repeat;
background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
