html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #F8FAFB;
    font-family: 'Lato', sans-serif;
    color: #333 !important;
    letter-spacing: 1px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.row {
    max-width: 600px;
    margin: 0 auto;
}

.login-page {
    max-width: 2560px;
    margin: 0 auto;
    height: 100vh;
    min-height: 100%;
    background: #F8FAFB;
}

.logo {
    max-height: 150px;
    margin-bottom: 50px;
}

.frigg-her-self {
    max-height: 400px;
}

.login-form-container {
    width: 66.6666666666%;
    height: 100%;
    min-height: 100%;
    background: #F8FAFB;
    float: left;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-frigg-container {
    height: 100%;
    width: 33.333333333%;
    background-image: linear-gradient(-135deg, rgba(86, 75, 141, 0.96) 0%, #201848 100%);
    color: #fff;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loginform-wrapper {
    max-width: 600px;
}

    .loginform-wrapper div {
        position: relative;
    }

        .loginform-wrapper div label.input-inline-label {
            position: absolute;
            top: 30px;
            left: 45px;
            color: #A7ADC0;
            transition: 0.4s;
            pointer-events: none;
        }

    /*.loginform-wrapper input:focus ~ label,
        .loginform-wrapper input:valid ~ label {*/
    .loginform-wrapper input ~ label.input-inline-label,
    .loginform-wrapper input:valid ~ label.input-inline-label {
        top: 10px;
        left: 45px;
        /* color: #564B8D; */
        color: #333;
        font-size: 16px;
        font-weight: bold;
    }

    .error-label {
        color: red;
        position: absolute;
        right: 20px;
        top: 25px;
        display: none;
    }

.validation-required-error .error-label {
    display: inline-block !important;
}

input {
    display: block;
    padding: 20px 45px;
    margin: 40px 0 auto;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    width: 100%;
    height: 80px;
    outline: none;
    font-size: 16px;
    color: #333;
}

    input[type="checkbox"] {
        width: 40px;
    }

    input[type="submit"] {
        cursor: pointer;
    }

.button {
    padding: 20px;
    color: #fff;
    border: 0;
    background: #564B8D;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50px;
    height: 80px;
    width: 600px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background-image: linear-gradient(-135deg, rgba(86, 75, 141, 0.96) 0%, #201848 100%);
}

.btn-skip {
    background: #24968D;
}

.btn-col-2 {
    width: 280px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.link-back {
    float: left;
    margin-top: 20px;
}

.forgot-password {
    display: block;
    color: #A7ADC0;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 1px;
}

.loginform-text {
    margin-bottom: 20px;
    text-align: center;
}

.fas {
    position: absolute;
    top: 31px;
    left: 20px;
    color: #9199B0;
}

input[type="text"]:valid, input[type="password"]:valid {
    background-color: #EDF2F5;
    border: 1px solid #48AF33;
}

.validation-required-error input[type="text"]:valid, .validation-required-error input[type="password"]:valid {
    background-color: #EDF2F5;
    border: 1px solid red;
}

.noterror {
    background-color: #EDF2F5;
    border: 1px solid #48AF33;
}

.error {
    background: pink !important;
    border: solid 1px red !important;
}

@media only screen and (max-width: 950px) {
    .login-frigg-container {
        display: none
    }

    .login-form-container {
        width: 100%
    }

    input[type="submit"] {
        max-width: 200px;
        font-size: 19px;
        height: 50px;
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .loginform-wrapper {
        max-width: 300px;
        display: block;
        margin: auto;
    }

    .loginform-text {
        padding: 0px 10px 0px 10px;
    }

        .loginform-text p {
            padding-top: 15px;
        }

    #PasswordTextBox, #UsernameTextBox {
        height: 60px;
        padding: 15px 45px 0px 45px;
    }

    .fa-user, .fa-lock {
        top: 20px;
    }
}

.loader-img {
    max-width: 550px;
}