.login-container{
    display: grid;
    place-items: center;
    text-align: center;
    background: transparent;
    margin-top:50px;
}
.content{
    width: 330px;
    background: #dde1e7;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: -3px -3px 7px #ffffff73,
        2px 2px 5px rgba(94, 104, 121, 0.288);
}
.content img{
    width: 200px;
    height: 90px;
    margin-top: -100px;
    border-radius: 50px;
    box-shadow: 
        0px 0px 2px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaaf,
        -8px -8px 15px #ffffff ;
}

.content .text{
    font-size: 25px;
    font-weight: 600;
    margin-top:15px;
    margin-bottom: 35px;
/*    color: #000;*/
}
.content .field{
    height: 50px;
    width: 100%;
    display: flex;
    position: relative;
}

.field input{
    height: 100%;
    width: 100%;
    padding-left: 45px;
    font-size: 18px;
    outline: none;
    border: none;
    color: #595959;
    background: #dde1e7;
    border-radius: 25px;
    box-shadow: inset 2px 2px 5px #babecc,
        inset -5px -5px 10px #ffffff73;
}
.field input:focus ~ label{
    box-shadow: inset 2px 2px 5px #babecc,
        inset -1px -1px 2px #ffffff73;
}
.field:nth-child(2){
    margin-top: 20px;
}
.field span{
    position: absolute;
    width: 50px;
    line-height: 50px;
    color: #595959;
}
.field label{
    position: absolute;
    top: 50%;
    left: 45px;
    pointer-events: none;
    color: #666666;
    transform: translateY(-50%);
}
.field input:focus ~ label{
    opacity: 0;
}

.login-btn{
    margin: 25px 0 0 0;
    width: 100%;
    height: 50px;
    color: #666666;
    font-size: 18px;
    font-weight: 600;
    background: #dde1e7;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 2px 2px 5px #babecc,
        -5px -5px 10px #ffffff73;
}
.login-btn:focus{
    color: #3498db;
    box-shadow: inset 2px 2px 5px #babecc,
        inset -5px -5px 10px #ffffff73;
}

.red-border{
    border:2px solid red;
}