﻿@media screen and (max-width: 480px) {
    body {
        /*background-color: lightgreen;*/
    }

    .loginForm {
        display: none;
    }

    .loginFormMobile {
        display: block;
        padding: 5px;
    }

    .inputMobile {
        height: 35px !important;
        font-size: 15px !important;
        padding-left: 5px !important;
    }

    .signInButton {
        width: 100%;
        font-size: 12pt;
        text-align: center;
        margin-left: 0px !important;
    }
}

@media screen and (min-width: 480px) {
    body {
        /*background-color: blue;*/
    }

    .loginFormMobile {
        display: none;
    }

    .loginForm {
        display: block;
    }

    .inputMobile {
        height: 23px !important;
        font-size: 12px !important;
    }
    .signInButton {
        width: 100%;
        font-size: 12pt;
        text-align: center;
        margin-left: 0px !important;
    }

}

.newAccountContainerMobile {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
    font-size: 11pt;
    justify-content: space-between;
    padding-top: 10px;
}

.newAccountContainer {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    text-align: center;
    font-size: 11pt;
    justify-content: space-between;
    padding-top: 10px;
}

.newAccountQuestion{
    /*width: 100%;*/
}

.registerNew {
    /*width: 100%;*/
    color: #0166b8;
}

.newAccountContainer hr {
    width: 100%;
    /*margin-bottom: 5px;*/
}

.newAccountQuestion:after {
    /*content: "";
    width: 100%;
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px solid #e7e7e7;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    z-index: 1;*/
}

.idpImageGap {
	padding-right: 10px;
	padding-top: 6px;
}