body{
    margin: 0;
    padding: 0;
    //background: url("/image/login/login.jpg");
    font-family: sans-serif;
    background-size: cover;
}
.box{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    padding: 40px;
    background: rgba(0,0,0,.2);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.5);
    border-radius: 10px;

}
.box h2{
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}
.box .inputBox{
    position: relative;
}
.box .inputBox input{
    width: 100%;
    padding: 10px 45px 10px 40px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;

}

input {
    background-color:#000;
}
input:-webkit-autofill {
    -webkit-box-shadow:0 0 0px 1000px white inset;
    -webkit-text-fill-color: #333;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~label{
    top:-18px;
    left: 0;
    color: #03a9f4;
    font-size: 12px;
}
.img_pic{
    position: absolute;
    top:0;
    left: 0;
    padding: 0 0 0 7px;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}
.eye{
    position: absolute;
    top:10px;
    right:0px;
    padding: 0 0 0 7px;
    font-size: 16px;
    color: #fff;
    transition: .5s;
}
.eye:hover{
    cursor:pointer;
}
#openEye{
    display: none;
}

.action{
    display: flex;
    justify-content: center;
}
.action input[type='button']{
    width: 40%;
    background: transparent;
    text-transform: uppercase;
    border: 2px solid #0e92b3;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    cursor: pointer;
    transition:0.2s;
    font-size: 16px;
    color: #fff;
}

.action input[type='button']:hover {
    background: #77787b;
}