/* Login Screen */

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.login-page {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #19224A 0%, #222E61 25%, #23346A 65%, #146693 90%, #088CB2 100%);
	display: flex;
}

.login-panel {
	background-color: white;
	max-width: 450px;
	padding: 16px 50px 16px 50px;
	border-radius: 4%;
	margin: auto;
}

.ot-logo {
	margin-top: 30px;
	margin-bottom: 30px;
}

.product-name {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: bold;
}

.secondary-name {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	text-align: left;
}

.ce-number {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	text-align: left;
	margin-bottom: 30px;
}

.loginForm {
	text-align: left;
	margin: 10px 0px 10px 0px;
}

.loginForm h1 {
	margin: 8px 0px 24px 0px;
	font-weight: normal;
}

.loginForm p {
	font-size: 14px;
	color: #707070;
	margin: 8px 0px;
	font-family: Roboto, Arial, Helvetica, sans-serif;
}

.loginForm input {
	margin: 0px 0px 24px 0px;
	border: 1px solid !important;
	font-family: Roboto, Arial, Helvetica, sans-serif;
}

.error-message {
	color: #e5004c !important;
	vertical-align: middle;
}

.blue-button-large {
	cursor: pointer;
	background-color: #0079ef;
	color: white;
	height: 42px;
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

input[type="text"],
input[type="password"],
select.form-control {
	background: transparent;
	border: none;
	border-bottom: 1px inset #707070;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
}

input[type="text"]:focus,
input[type="password"]:focus,
select.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline-width: 0;
}