@font-face {
	font-family: "Siemens Sans Roman";
	src: url("fonts/siemenssans-roman-webfont.woff2") format("woff2"),
		url("fonts/siemenssans-roman-webfont.woff") format("woff");
    font-display: swap;
}

@font-face {
	font-family: "Siemens Sans Bold";
	src: url("fonts/siemenssans-bold-webfont.woff2") format("woff2"),
		url("fonts/siemenssans-bold-webfont.woff") format("woff");
    font-display: swap;
}

html, body {
    font-family: 'Siemens Sans Roman', helvetica, arial, sans-serif;
    background-color: #FFFFFF;
    height: 100%;
    margin: 0;
    padding: 0;
}

#loginContainer {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
}

#logo-container {
    padding-left: 24px; 
    padding-bottom: 25px;
    padding-top: 25px;
    background-color: #FFFFFF;
}

.siemens-logo {
    height: 15px;
}

#imageContainer {
    position: relative;
    width: 100%;
    height: 500px;
	background: url(../images/modern-building-of-the-technical-university-warsaw-poland_original.jpg);
	background-position: center bottom;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

#loginDiv,
#resetPwdDiv {
    background-color: #FFFFFF;
    padding: 54px 40px;
    border-radius: 3px;
    width: 362px;
}

#resetPwdDiv {
    display: none;
}

#productTitle {
    text-align: center;
    width: 100%;
    margin-bottom: 33px;
}

#productTitle h2 {
	font-family: 'Siemens Sans Bold', helvetica, arial, sans-serif;
    font-weight: 600;
    color: #005578;
    font-size: 20px;
    margin-top: 0px;
}

.release {
	//New: 
    color: #A0A0A0;
    
    //Old:
    //color: #D0D0D0;
    //float: right;
    
    font-size: 10pt;
    font-weight: normal;
}


.login_form input[type="text"], input[type="password"], input[type="email"], textarea {
	font-family: Siemens Sans Roman;
    height: 30px;
    width: 328px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 5px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

input[type="button"],
input[type="submit"],
.btn,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type=button],
.btn,
button {
	font-family: 'Siemens Sans Bold', helvetica, arial, sans-serif;
    background: #009999;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    float: right;
    width: 90px;
    height: 40px;
    box-sizing: border-box;
}

input:focus,
.btn:focus,
button:focus {
    outline: none;
    border: #005578 solid 1px !important;
}

input[type=button]:focus,
.btn:focus,
button:focus {
	border: none !important;
}

input[type=button]:active,
.btn:active,
button:active {
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
}

input[type=button]:hover,
.btn:hover,
button:hover {
    background-color: #66c2c2;
    cursor: pointer;
}

input, textarea, .btn, button {
	font-family: inherit;
    border: 0;
}

.login_form a:link {
    color: #009999;
    font-size: 14px;
}

a {
	text-decoration: none;
}

#loading {
    margin-right: 5px;
    margin-top: 10px;
}

.forgot-pw-login-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.forgotPassword {
    color: #9a9a9a;
}

#resetPwdDiv input[type=button] {
	width: 90px;
}

#fp_username {
    margin-top: 10px;
}

.mutedText {
    font-size: 9pt;
    color: #738794;
}

p {
    text-indent: 3px;
}

.login-disclaimer,
.sc-login-disclaimer {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 13px;
	padding-left: 25px;
	padding-right: 25px
}

.sc-login-disclaimer {
	padding-top: 5px;
}

.sc-login-disclaimer span,
.login-disclaimer span {
	font-size: 12px;
	text-align: center;
}

span.footertext a {
    color: #009999;
	font-size: 12px;
	text-align: center;
}

@media (max-width: 650px) {
	#imageContainer {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#loginDiv,
	#resetPwdDiv {
		position: static;
		margin-top: 0;
	    padding: 40px 27px;
	    width: 100%;
	    margin-left: 20px;
	    margin-right: 20px;
	}
	
	.login_form input[type="text"], 
	#resetPwdDiv input[type=button],
	input[type="password"], 
	input[type="email"], 
	textarea {
	    height: 39.5px;
	    width: 100%;
	    box-sizing: border-box;
	}
	
	#resetPwdDiv input[type=button] {
		width: 90px;
	}
	
	#logo-container {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 15px;
	}
	
	.siemens-ingenuity-logo {
		position: static;
		margin-bottom: 0;
		margin-left: 18px;
	}
}

@media (max-height: 620px) and (max-width: 650px) {
	#imageContainer {
		height: calc(100vh - 68px - 57px);
	}
}