body, html {
    height: 100%;
    margin: 0;
}

html {
    /*scroll-behavior: smooth;*/
}


body {
    padding: 0;
    font-family: "Roboto", Arial;
    -webkit-text-size-adjust: 100%;
	font-size: 14px;
    line-height: 1.35;
    min-width: 900px;
    position: relative;
    overflow: auto;
    -webkit-tap-highlight-color: transparent;
}

article, aside, footer, header, nav, section {
    display: block;
}
a, a:focus, a:active, a:visited {
    text-decoration: none;
	outline: none;
}
a {
   background-color: transparent;
   color: #ef7f23;
}
ul, ul li {
    display: block;
    list-style: none;
}

p {
	color: #5a7989;
}

div {
	box-sizing: border-box;
	}

.button {
	display: inline-block;
	background-color: #ef7f23;
	border-radius: 5px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.5;
	white-space: nowrap;
	padding: 10px 55px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.25s ease-in;
}

.button:hover {

	 }



input[type="text"],
input[type="password"],
select {
	border: solid 2px #fff;
    padding: 13px;
    border-radius: 6px;
	}

input[type="text"]:hover,
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="text"]:active,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="password"]:active{
	border: solid 1px #91aebd;
    background: #fff;
	}

input[type="text"]::placeholder {
	opacity: 0.7;
	}

.float-left {
	float: left !important;
	}
.float-right {
	float: right !important;
	}




.page {

}

.inner {
	position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    min-height: 200px;
    padding: 55px 55px 70px 350px;
    background-color: white;
    box-shadow: 0 3px 17px rgb(123 146 162 / 30%);
    border-radius: 5px;
    transform: translate(-50%, -50%);
    background: url(../img/bg.jpg) top left no-repeat;
}

.logo,
.logo img,
.logo h2 {
   width: 170px;
   margin: 0;
}

.logo {
   margin-bottom: 40px;
    display: block;
}

h3 {
   margin: 0 0 22px 0;
   font-size: 24px;
   font-weight: 400;
}

.field {
    margin-bottom: 15px;
}

.field .label {
    color: #6e9fb8;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0 0 4px 11px;
}

.field input {
    padding: 5px 11px 5px;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    border: 1px solid #cbd5da;
    background-color: #ffffff;
    width: 344px;
    font-size: 14px;
    line-height: 18px;
    color: #404446;
    height: 38px;
    display: block;
    font-family: Arial, Helvetica, 'Trebuchet MS', sans-serif;
}

.field.error input {
    border: 1px solid #e6828e;
    background-color: #fdf4f5;
}

.btn_cont {
	width: 90%;
	margin-top: 20px;
	}

.btng {
    display: inline-block;
    height: 20px;
    padding: 13px 20px 13px;
    background-color: #ef7f23;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
	min-width: 100px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btng:hover {
	background-color: #f95d12;
	}

.btng.disabled {
    background-color: #cdd4db;
    cursor: not-allowed;
}

.btng.disabled:hover {
    background-color: #cdd4db;
}

.btn_cont .float-right a {
	display: inline-block;
	line-height: 46px;
}

.btn_cont .float-right a:hover {
	text-decoration: underline;
}

.error {
	color: #ca0e24;
	margin: 12px 0;
}

.status-ok {
	padding: 20px 40px 20px 80px;
	background: #f1fef9;
	border: solid 1px #cbe9dc;
	border-radius: 4px;
	color: #028a55;
	margin-bottom: 26px;
	position: relative;
}
.status-ok:after {
	position: absolute;
	content: "";
	width: 32px;
	height: 23px;
	background: url(../img/ok-btn.png) top left no-repeat;
	top: 26px;
    left: 28px;
}

.status-ok strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.0rem;
}



/* --------NEW RESPONSIVE STYLES-------- */

@media (max-width: 767px) {
	 body {
		min-width: auto;
		width: 100%;
	}

	.logo {
		margin: 0 0 22px;
	}

	.logo img, .logo h2 {
		width: 150px;
	}

	h3 {
		margin: 0 0 12px 0;
		font-size: 22px;
	}

	.inner {
		left: 0;
		top: 0;
		/* bottom: 30px; */
		width: 100%;
		padding: 150px 30px 30px;
		padding: 22vh 30px 30px;
		position: relative;
		box-shadow: none;
		border-radius: 0;
		transform: none;
		background: url(../img/bg-mob.jpg) top center no-repeat;
		background-size: contain;
	}

	.btn_cont {
	   width: 100%;
	   margin-top: 14px;
	}

	.field input,
	.btng {
		width: 100%;
		box-sizing: border-box;
		height: 48px;
	}

	.field input {
		height: 44px;
	}

	.field .label {
		padding: 0 0 4px 0;
	}

	.btn_cont .float-right {
		float: none !important;
		margin: 5px 0 0;
	 }






}