@font-face {
	font-family: 'Raleway';
	src: url('/Raleway-Regular.ttf');
}
@font-face {
    font-family: 'Alamain';
    src: url('/alamain1.ttf');
}
body, input, select, button, td {
	font-size: 17px;
}
body {
	background-color: #a06b75;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	font-family: 'Raleway', sans-serif;
}
a, a:visited {
	color: #0269d1;
	text-decoration: none;
}
a:hover {
	text-decoration:underline;
}
.login-container {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
	text-align: center;
	width: 300px;
	font-family: 'Raleway', sans-serif;
}
.login-container h2 {
	/* font-family: Raleway; */
	/* text-transform: uppercase; */
}
.login-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.login-form input {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-family: 'Raleway', sans-serif;
}
.login-form input.error {
	border-color: red;
	box-shadow: 0px 0px 10px red;
}
.submit_btn {
	background-color: #ff7e00;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'Raleway', sans-serif;
}
.login-form .submit_btn:hover {
	background-color: #e56f00;
}
.divider {
	width: 100%;
	margin: 40px auto;
	border-bottom: 2px dotted #a06b75;
	position: relative;
}
.divider .or {
	position: absolute;
	left: 50%;
	transform: translate(-50%,-45%);
	background-color: #fff;
	color: #a06b75;
	padding: 6px;
	/* border: 1px solid #a06b75;
	border-radius: 30px; */
}
.login-form-desc {
	margin: 15px;
	font-weight: bold;
	font-size: 1.1rem;
}
.signout-button {
	background-color: white;
	color: #ff7e00;
	border: 2px solid #ff7e00;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.1rem;
	font-family: 'Raleway', sans-serif;
	margin-top: 10px;
}
.signout-button:hover {
	background-color: #ff7e00;
	color: white;
}
#signin_error, #error {
	font-weight: bold;
	margin: 8px 0;
	padding: 15px 8px;
	border: 2px dashed orange;
	border-radius: 10px;
}
#signin_error a {
	margin-top: 10px;
	display: inline-block;
	padding: 7px 4px;
	background: #44a20f;
	color: #fff;
	font-size: 1.1rem;
	border-radius: 5px;
}


.login-container .bottom_links .bottom_link {
	margin-top: 5px;
}

.login-container .bottom_links .bottom_link:first-child {
	margin-top: 20px !important;
}

.login-back {
	position: absolute;
	left: -7px;
	top: 20px;
	padding: 30px; 
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
.login-back a {
	position: relative;
	top: 5px;
	font-family: Alamain;
	font-size: 22px;
	line-height: 35px;
}
.login-back a .ico {
	margin-right: 10px;
}


.login-container.create-account {
	width: 500px;
}

td.title {
	text-align: right;
	color: #0269d1;
	font-weight: bold;
	padding-right: 8px;
	border-top: 1px solid #c3daf0;
}

td.data {
	text-align: left;
	padding: 2px 0px;
}

#ua_form .submit {
	padding-top: 15px !important;
}


.g_id_signin {
	transform: scale(1.25); 
	transform-origin: 0%;
}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
	.login-container {
		margin: 40px 0;
	}
	.login-back {
		top: 5px;
		padding: 15px 30px;
	}
	.login-back a {
		font-size: 22px;
		line-height: 30px;
	}

} 
