html, body {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
}

body{
    background-color: #191f3a;
}

.login-body-container {
    height: 100%;
    width: 100%;
}

.login-body-header{
    width: 100%;
    height: 10%;
}

.login-body-data{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto auto;
    height: calc(100% - 20%);
}

.login-body-data-container{
    background-color: #f0f0f0ad;
    border: 1px solid #80808057;
    width: 250px;
    padding: 40px;
    border-radius: 15px;
}

.login-body-data-container-logo{
    display: flex;
    justify-content: center;
    height: 50%;
    margin-bottom: 35px;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #757373d9;
}
    .login-body-data-container-logo > img{
        width: 190px;
    }

.login-body-footer{
    width: 100%;
    height: 10%;
}

.login-form {
display: grid;
    align-items: center;
    justify-content: center;
    /* grid-template-columns: auto auto auto; */
    height: calc(100% - 50px);
    padding: 10px 0 10px 0;
}
.login-form > .login-form-error{
    font-size: .8rem;
    color: #de0000;
    text-align: center;
    width: 100%;
    height: 15px;
}
.login-form > div {
    height: 40px;
    margin-bottom: 8px;
    width: 230px;
}

.login-form > div > input{
    width: calc(100% - 30px);
    height: 25px;
    padding: 5px 15px;
    border-radius: 7px;
    border: 1px solid #80808042;
    background-color: #ffffffe6;
}
.login-form > div > input::placeholder{
    color:#80808069;
}
.login-form > div > button{
    width: 100%;
    padding: 15px 10px;
    margin-top: 15px;
    background-color: #c1bfbf;
    border: 1px solid #80808042;
    border-radius: 7px;
}
