html, body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
div{
    box-sizing: border-box;
}
input {
    outline:none;
}
.login-main-block{
    background-color: #000000;
    width: 100%;
    height: 100vh;
    color: #fff;
    font-family: 'Lato', sans-serif;
}
.login-main-background{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url("../images/login/login-bg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
}
.login-main-block-content{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}
.login-title{
    margin-bottom: 1.75rem;
    font-size: 2rem;
    font-family: inherit;
    line-height: 1.1;
    text-transform: capitalize;
}
.login-content{
    width: 100%;
    display: flex;
    justify-content: center;
}
.form-login{
    width: 250px;
}
.login-input-block{
    display: block;
    width: 100%;
    padding: .5rem 0;
    font-size: .9rem;
    background-clip: padding-box;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    font-family: sans-serif;
}
.login-input{
    border-radius: 4px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #364269;
    background-color: rgba(72, 72, 72, .55);
    color: #fff;
    width: 100%;
}
.login-input:focus{
    color: #464a4c;
    background-color: #fff;
    border-color: #dfe6fc;
    outline: none;
}
.login-input-block-remember-me{
    display: flex;
    justify-content: center;
    font-weight: 100;
    margin-top: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.login-input-checkbox{
     margin-inline-end: 0.5rem;
     cursor: pointer;
     width: 1rem;
     height: 1rem;
 }

.login-input-checkbox-label{
     cursor: pointer;
     user-select: none;
 }

.login-submit-button{
    width: 100%;
    min-width: 200px;
    background-color: #6c8bef;
    padding: .75rem 1.5rem;
    border-radius: 4px;
    transition: 0.3s;
    color: #FFFFFF;
    border: 1px solid #6c8bef;
    cursor: pointer;
}
.login-submit-button:hover{
    background-color: #3e67ea;
    border-color: #355fe9;
}
.login-message-block{
    text-align: center;
    margin: 1rem;
    font-size: 0.9rem;
}
body .login-input-error{
    border-color: #ff6262;
}
