/* Default Styles */
body, html, table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
body {
	background-color: #EAEAEA;
	border: 0;
	margin: 0;
}

.login {
    position: absolute; 
    box-sizing:border-box;
    left: 50%;
    top: 10vh;
    width:auto;
    max-width:500px;
    max-height:80vh;
    margin: 0;
    padding: 30px;
    transform: translateX(-50%);
    overflow-y:auto;
    background:rgba(255,255,255,.85);
}

.login input.text, .login input.text:focus {
    background-color:#fff;
}

.mauth-login 
{
    clear: both;
}

.mauth-login input.text { width: 300px; }
.mauth-login label  
{
    display: inline; 
    font-size: 12px;
}
.mauth-login .mwc-form-submit .button 
{
    left: auto;
    margin: 0;
    position: relative;
    top: auto;
}

.backgroundimage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}
.backgroundimage.transparent {
    opacity: 0;
}

.backgroundrefresh {
    background-color: #009ad7;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    transition: background-color ease .3s;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}
.backgroundrefresh:hover {
    background-color: #2980b9;
}
        
/* language switch */
.languageSwitch {
    position: absolute;
    bottom: 10px;
    right: 30px;
}
.languageSwitch a {
    float: left;
    margin-right: 5px;
    padding: 0 5px;
    color: #191818;
}
.languageSwitch img {
    height: 10px;
    vertical-align:baseline;
}
.languageSwitch a.active,
.languageSwitch a:hover {
    background: #e9e9e9;
    text-decoration:none;
}