 * {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
}

html {
    font-family: Ubuntu;
}

html, body, .page {
    width: 100%;
    height: 100%;
    display: flex;
}

body {
    background-size: auto 100%;
    box-shadow: 0px 0px 30px #000;
    color: #646464;
}

input[type='text'],
input[type='password'] {
    height: 30px;
    width: 100%;
    border: solid 1px #dedddd;
    margin-top: 2px;
    outline: none;
    border-radius: 3px;
}

input[type='text']:focus, input[type='password']:focus {
    border-color: #E87944;
    box-shadow: 0px 0px 5px #E87944 inset;
}

        

            header h1 {
                display: inline-block;
                font-size: 2em;
                vertical-align: top;
                line-height: 2.1em;
            }



.left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60vw;
    padding: 0 15px;
}

.right-side {
    width: 40vw;
    height: 100%;
}

.welcome-message {
    text-align: center;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.login-form-container {
    width: 100%;
    max-width: 300px;
}

.login-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.login-image {
    width: 100%;
    max-width: 150px;
}

.login-form {
    box-shadow: 0px 0px 50px #dadada;
    padding: 30px;
}

.login-form .form-group {
    display: block;
}

.welcome-title {
    text-align: center;
    margin-bottom: 15px;
}

.login-button {
    width: 100%;
}

.footer-text {
    margin: 20px 0;
    font-size: 0.6em;
    text-align: center;
    max-width: 90%;
}

.form label {
    font-size: 0.9em;
}


@media screen and (max-width: 750px) {
    .left-side {
        width: 100vw;
    }

    .right-side {
        display: none;
        width: 0;
    }
}

@media screen and (max-width: 300px) {
    .login-form {
        padding: 15px;
    }
}
