
.login{
    position: relative;
    top: 160px;
    left: 50%;
    width: 300px;
    height: 420px;
    margin-left: -150px;
    margin-bottom: 200px;
    border-radius: 10px;
    background: #fff;
    box-shadow:  5px 5px 10px #878787,
                -5px -5px 10px #ece5e5; 
}

input{
    outline: none;
}

.login-title{
    width: 100%;
    height: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 30px;
    font-weight: bold;
    color: #6668BE;
    text-shadow: 3px 3px 3px #8664BE;
}

.login-con{
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;       
    align-items: center;     
    justify-content: space-around; 
    color: #7E9EF4;
    text-shadow: 3px 3px 3px #B9D6FF;
}

.login-con div{
    font-size: 16px;
    height: 40px;
    line-height: 40px;
}

.login-con input{
    background-color: transparent;
    height: 30px;
    font-size: 16px;
    color: #0094D9;
    border-bottom: 1px solid #436BBB;
    border-top: none;
    border-left: none;
    border-right: none;
}

.login-user{
    width: 160px;
    text-indent: 20px;
}

.login-pass{
    width: 160px;
    text-indent: 20px;
}

.login-code{
    width: 60px;
    text-align: center;
}

.login-con img{
    width: 100px;
    height: 30px;
    position: relative;
    top: 10px;
    cursor: pointer;
}

.login-con button{
    width: 120px;
    height: 30px;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #168aad;
    text-shadow: 3px 3px 3px #34a0a4;
    background: linear-gradient(145deg, #5390d9, #00E3B8);
    box-shadow:  2px 2px 4px #878787,
             -2px -2px 4px #ffffff;
}

.login-con button:hover{
    background: transparent;
    box-shadow: inset 2px 2px 4px #878787,
                inset -1px -1px 2px #ffffff;
}

#error{
    color: #FC7B65;
}