@charset "utf-8";
@import url('bootstrap-reboot.min.css');
@import url('bootstrap-grid.min.css');

:root {
	--noto-sans: 'Noto Sans', sans-serif;
	--noto-serif: 'Noto Serif', serif;
	--bc-color-1: #262d46;
	--bc-color-2: #e8a88d;
}

body {
	margin: 0;
	background-color: var(--bc-color-2);
	height: 100%;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #000;
	-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
	line-height: 20px;
}
html {
	scroll-behavior: smooth;
}

/* <mini reset */
::-moz-selection {
	background: #fff;
	color: #000;
	text-shadow: none;
}
::selection {
	background: #fff;
	color: #000;
	text-shadow: none;
}

a,
a:link,
a:active,
a:visited {
	outline: none;
	text-decoration: none;
}
a:focus {
	outline: none;
	outline: expression(hideFocus='true');
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
	margin: 0;
	padding: 0;
}
/* mini reset> */

* {
	-moz-transition: all .3s;
		-webkit-transition: all .3s;
			transition: all .3s;
}

#wrapper {
	position: relative;
	margin: 0 auto;
	/*max-width: 1690px;*/
	max-width: 1920px;
	padding: 0;
}

.visible {
	overflow: inherit;
	height: inherit;
	font-size: inherit;
	line-height: inherit;
}
.hidden {
	overflow: hidden;
	height: 0;
}

/* <section-1 */
#section-1 .box {
	margin: 0 auto;
	max-width: 540px;
	text-align: center;
}
#section-1 .box h1 {
	margin-top: 150px;
	font-family: var(--noto-serif);
	font-size: 70px;
	color: var(--bc-color-1);
	line-height: 70px;
	font-weight: 700;
}
#section-1 .box .logo {
	margin: 140px 0 50px;
	display: inline-block;
	width: 170px;
	height: auto;
}
#section-1 .box h2 img {
	margin: 20px 0;
	display: inline-block;
	width: 364px;
	height: auto;
}
#section-1 .box p {
	font-family: var(--noto-sans);
	font-size: 15px;
	color: var(--bc-color-1);
	line-height: 25px;
	font-weight: 500;
}
#section-1 .main-image {
	text-align: center;
}
#section-1 .main-image img {
	margin-top: 30px;
	max-width: 100%;
	width: auto;
}
#section-1 form {
	margin: 40px auto;
	max-width: 540px;
}
#section-1 form input[type=text] {
	margin-bottom: 40px;
	background: none;
	background-color: #f7bda5;
	width: 100%;
	height: 50px;
	border: none;
	border: 1px solid var(--bc-color-2);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom: 1px solid var(--bc-color-1);
	padding: 0 20px;
	font-size: 12px;
	color: var(--bc-color-1);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 50px;
	letter-spacing: 1px;
}
#section-1 form input[type=text]:hover,
#section-1 form input[type=text]:focus {
	border: 1px solid var(--bc-color-1);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: none;
}
#section-1 form input[type=text].error {
	border-color: red;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	color: red;
}
#section-1 form input[type=submit] {
	margin: 20px auto 40px;
	display: block;
	background: none;
	background-color: var(--bc-color-1);
	height: 60px;
	border: none;
	border-radius: 30px;
	padding: 0 50px;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 60px;
	letter-spacing: 1px;
}
.hidden {
	display:none !important;
}
#section-1 form .return-to-site {
	margin: 20px auto 40px;
	display: inline-block;
	background-color: white;
	height: 60px;
	border: none;
	border-radius: 30px;
	padding: 0 50px;
	font-size: 14px;
	color: var(--bc-color-1);;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 60px;
	letter-spacing: 1px;
}
.flex-container {
	display:flex;
}

#section-1 form input[type=submit]:hover,
#section-1 form input[type=submit]:focus {
	background-color: #000;
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	#section-1 .box h1 {
		font-size: 60px;
		line-height: 60px;
	}
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	#section-1 .box .logo {
		margin: 50px 0 30px;
		width: 120px;
	}
	#section-1 .box h1 {
		font-size: 50px;
		line-height: 60px;
	}
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	#section-1 .box h1 {
		margin-top: 30px;
	}
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	#section-1 .box {
		padding: 0 20px;
	}
	#section-1 .box h1 {
		font-size: 50px;
		line-height: 60px;
	}
	#section-1 .box h2 img {
		max-width: 364px;
		width: 100%;
	}
	#section-1 form {
		padding: 0 20px;
	}
	#section-1 form input[type=text] {
		margin-bottom: 30px;
	}
	#section-1 form input[type=submit] {
		margin-top: 10px;
	}
}

/* custom */
@media (max-width: 399.98px) {
	#section-1 .box h1 {
		font-size: 35px;
		line-height: 45px;
	}
	#section-1 .box p {
		font-size: 14px;
	}
}

.info-response span {
	font-size: 15px ;
	font-weight:600;
}
.info-response span.success {
	color: green;
}
.info-response span.error {
	color: red;
}
.info-response span.info {
	color: darkblue;
}
