body {
    font-size: 16px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
    user-select: none;
    display: none;
    margin: 0;
    padding: 0;
}

body > .row {
    margin: 0;
}

.form {
    width: 25%;
    height: 100vh;
    position: fixed;
    top: 15%;
    left: 65%;
    padding: 12px;
}

.row {
    width: 100%;
    display: flex;
    margin: 5% 0 5% 0;
}

.form .row {
    margin: 5% 0 5% 10%;
}

.form .row:last-child {
    margin-top: 20%;
}

label {
    position: absolute;
    font-style: italic;
    color: #1858ff;
    font-size: 14px;
    padding: 0 6px 0 6px;
    background-color: #ffffff;
    z-index: 1000;
}

input {
    visibility: hidden;
    box-sizing: content-box;
    -moz-box-sizing: border-box;
    z-index: 999;
}

input:focus {
    border: 1px solid #1858ff !important;
    color: #1858ff;
    transition: border 1s, color 1s;
}

input::placeholder {
    color: #c1c1c1;
    opacity: 1;
}

input, select {
    user-select: inherit;
    width: 100%;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #d4d4d4;
    line-height: 37px;
    font-size: 19px;
    color: #5b5b63;
}

span {
    padding: 5px 6px 0 6px;
    min-width: 24%;
    position: relative;
    font-size: 22px;
    text-align: center;
    background-color: #c1c1c1;
    color: #919191;
    height: 32px;
    border: 1px solid #919191;
    border-radius: 6px;
    box-shadow: 3px 2px 10px 2px #b9b9b9;
    cursor: no-drop;
}

span:hover {
    background-color: #c1c1c1;
    color: #343434;
    border: 1px solid #343434;
    box-shadow: 6px 4px 10px 2px #494949;
    transition: color 2s, border 2s, box-shadow 2s;
}

.btn {
    cursor: pointer;
    background-color: #595eff;
    color: #fffff9;
    box-shadow: 3px 2px 10px 2px #bbc3ff;
}

.btn:hover {
    background-color: #1a23ff;
    color: #ffff55;
    box-shadow: 3px 2px 10px 2px #8892fa;
    transition: color 2s, border 2s, box-shadow 2s;
}

.img {
    width: 65%;
    height: 100vh;
    background: no-repeat url(/Images/qlik_default.jpg);
    background-position-x: right;
    background-size: cover;
}

.error {
    border: 1px solid #ff0039;
}

b {
    position: relative;
    text-align: right;
    width: 50%;
    top: 8px;
    color: #5b5b63;
}

select {
    visibility: hidden;
    position: relative;
    width: 50%;
}

.row img {
    width: 30%;
    margin-left: 35%;
}

.page {
    width: 60%;
    height: 100vh;
    display: block;
    border: none;
    float: left;
}

.auth {
    width: 38%;
    height: 100vh;
    display: block;
    border: none;
    float: right;
}

.page img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-device-width: 1180px) {
    .page {
        width: 100%;
    }

    .row img {
        margin-left: 25%;
    }

    .form {
        background-color: #ffffff;
        border-radius: 6px;
        border: 1px solid #1858ff;
        height: auto;
        width: 30%;
    }

    input {
        width: 78%;
    }

    .row b {
        width: 30%;
    }
}

@media (max-device-width: 590px) {
    .page {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        opacity: 0.2;
    }

    input, select {
        padding: 14px;
    }

    input {
        font-size: 26px;
        margin-left: -14px;
    }

    select {
        font-size: 24px;
    }

    label {
        font-size: 20px;
    }

    .row b {
        font-size: 18px;
    }

    .form {
        left: 23%;
        top: 15%;
        width: 55%;
    }

    span {
        margin-left: -4px;
        font-size: 22px;
        padding: 20px 20px 15px 20px;
        border-radius: 15px;
    }

    .form .row:last-child {
        margin-top: 10%;
    }
}

@media (max-device-width: 400px) {
    .form {
        width: 86%;
        left: 4%;
        top: 15%;
    }

    span {
        font-size: 30px;
        padding: 30px 30px 45px 30px;
        border-radius: 23px;
    }

    .row b {
        font-size: 40px;
    }

    input, select {
        padding: 30px;
    }

    input, select, label, .row b {
        font-size: 26px;
    }

    .page {
        display: none;
    }

    input {
        margin-left: -25px;
    }
}