body {
    display:flex;
    flex-flow:column nowrap;
    margin:0px;
    height:100vh;
    width:100vw;
    align-items:center;
    justify-content:center;
    background-repeat:repeat-x;
    background-position:center bottom;
    background-size: auto 50vh;
    background-color:#FFF;
}

div#idb-login-logo {
    width:272px;
    height:100px;
    background-image:url(../images/logo_full.svg);
    background-repeat:no-repeat;
    background-position:center bottom;
}

.idb-login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.idb-login-form {
    width: 230px;
    padding:10px;
}

.idb-product-text {
    position:absolute;
    right:7px;
    bottom:-16px;
    color:#E79F23;
    font-size:1.2em;
}

.idb-login-title {
    text-align:center;
    font-weight:500;
    font-size:1.3rem;
}
.idb-auth-btn-form {
    width: 230px;
    padding:0 10px 10px 10px;
}
.idb-logo {
    padding-top:85px;
    background-image:url('../images/logo_full.svg');
    background-position:center top;
    background-repeat:no-repeat;
    background-size:contain;
}

input[type=text], input[type=password] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border:none;
    background: transparent;
    font-size:1rem;
    padding-top:0.4rem;
    padding-bottom:0.4rem;
    padding-left:0.4rem;
}

.idb-resetpw input[type=text], .idb-resetpw input[type=password] {
    border:1px solid #cccccc;
}

#msg {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
}
.idb-login-box .submit-btn {
    background:#e79f23;
    color:#ffffff;
    font-size:1rem;
    padding:0.5rem;
    width:100%;
    border-radius:5px;
    border: 2px solid #fff;
    cursor:pointer;
    margin-top: 0.75em;
	transition:0.2s all;
    text-transform:uppercase;
}
.submit-btn:hover {
    background:#fff;
    color:#e79f23;
    border-color:#e79f23;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition:0.4s all;
}
.idb-login-box .auth-btn {
    margin-top:0.5em;
}
.idb-login-box .auth-btn {
    display:flex;
    flex-flow:row nowrap;
    justify-content:center;
    background:#ffffff;
    color:#323232; 
    font-size:1rem;
    padding:0.5rem;
    width:100%;
    border-radius:5px;
    border: 2px solid #cccccc;
    cursor:pointer;
	transition:0.2s all;
    text-transform:uppercase;
}
.auth-btn:hover {
    background:#cccccc;
    color:#ffffff;
    border-color:#cccccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition:0.4s all;
}

.auth-btn img {
    height:18px;
    margin-right:7px;
}

.auth-btn-text {
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
}

.cred-input {
    background: no-repeat left center / contain;
    padding-left:30px;
    border-bottom:1px solid #5a5a5a;
    margin-bottom: 0.75em;
}

.reset-link-container {
    text-align: right;
}

.reset-link-container a {
    color: #5a5a5a;
    font-size: small;
    text-decoration: none;
}

#username {
    background-image:url('../images/login/login_username.svg');
}
#password, #confirm-password {
    background-image:url('../images/login/login_password.svg');
}

@media (max-height: 319px) {
    body {
        /* The !important is to override the application specific background */
        background: none !important;
    }
}

@media (max-height: 470px) {
    body {
        justify-content: start;
    }
}

@media (max-width: 800px) {
    html {
        font-size: 20px;
    }

    .idb-login-form {
        width: auto;
    }

    .idb-auth-btn-form {
        width: auto;
    }
}
body[data-hotkey]::before {
   display: none;
}

