* {
    margin: 0;
    padding: 0;
}

.login_area {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.left-side {
    width: 40%;
    height: 100vh;
    border-right: 1px solid #CCC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-side {
    width: 60%;
    height: 100vh;
    /*background-image: url("../images/logo_VODA-1.png");*/
    background-size: contain;
    /*background: linear-gradient(90deg, #0f6674, #0c5460, #0c597c) no-repeat center;*/
    display: flex;
    background: rgb(15,102,116);
    /*background: linear-gradient(180deg, rgba(15,102,116,0.15029761904761907) 0%, rgba(12,84,96,0.4724264705882353) 48%, rgba(12,89,124,0.5984768907563025) 100%);*/
    background-image: url("../images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
}
.right-side img {
    /*width: 600px;*/
    /*height: 500px;*/
    display: none;
    width: 100%;
}

.login-data {
    width: 80%;
    height: 600px;
    /*border: 3px solid #E5E5E5;*/
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-info {
    width: 90%;
    height: 70%;
    margin-top: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.login_input {
    height: 30px;
    border: none;
    border-bottom: 1px solid #CCC;
    outline: #2a3568;
    margin-bottom: 10px;
}

.button-area {
    width: 100%;
    height: 50px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

label {
    color: #5a6268;
}

button {
    width: 50%;
    height: 50px;
    background-color: #007bb6;
    border-radius: 30px;
    color: #FFF;
    border: none;
    cursor: pointer;

    &:hover {
        background-color: #0c597c;
        transition: 0.2s ease;
    }
}



/*#img-logo-login{*/
/*    margin: 8px;*/
/*    padding: 0px;*/
/*    background-color: #cccccc;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/