.login-page {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-form {
    margin-top: 32px;
}

.login-button {
    font-size: x-large;
    color: white;
    font-weight: bold;
    background-color: #ff6336;
    height: 40px;
    width: 100%;
    border-width: 1px;
    border-color: #ff6336;
    border-style: solid;
    vertical-align: middle;
}

.password-container i {
    margin-left: -30px;
    cursor: pointer;
}

#toggle-password {
    position: absolute;
    bottom: 30px;
    right: 16px;
    margin-left: -30px;
    cursor: pointer;
    font-size: 24px;
}

#loader-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-style {
    width: 100%;
    border-left-width: 0px;
    border-bottom-color: #ff6336 !important;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 5px;
    background-color: lightgrey;
    margin-bottom: 16px;
    height: 48px;
    box-sizing: border-box;
    font-size: 18px;
    padding-left: 16px;
}

.select-style {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px; /* room for custom arrow */
    cursor: pointer;
}

.select-style {
    background-image:
        linear-gradient(45deg, transparent 50%, #333 50%),
        linear-gradient(135deg, #333 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------- */

/*For laptops and Tablets*/
/* 
    To compensate for the difference in pixel density
    do the following:
                    new_size = 1.25 * old_size
*/
@media only screen and (min-width: 768px) {

    .col-8-t {
        width: 66.66%;
    }

    .login-button {
        height: 50px;
        width: 125px;
        font-size: xx-large;
    }

    .login-button {
        width: 100%;
    }

    .login-page {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-container {

        padding: 16px;
    }

    .login-form {
        margin-top: 10%;
    }

    .input-style {
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    #toggle-password {
        position: absolute;
        bottom: 38px;
        right: 20px;
        margin-left: -38px;
        cursor: pointer;
    }
}