@charset "UTF-8";

html {
    height: 100%;
}

body {
    height: 100%;
	margin: 0px;
    padding: 0px;
}

#wrapper {
	background-image: url("../../img/hanwha/bg.jpg");
	background-position: center;
	background-repeat: repeat;
	background-size:cover;
    height: calc(100% - 100px);
	min-height: 420px;
}

.container {
	display: table;
	height: 235px;
	padding: 50px;
	box-sizing: border-box;
	background-color:rgba(0,0,0,0.4);
    border-radius: 10px;
    border: 1px solid #555;
}

.container, .header {
	margin-left: auto;
    margin-right: auto;
    width: 550px;
    text-align: center;
}

.header {
	padding-top: 160px;
	padding-bottom: 45px;
}

@media ( max-height: 750px ) {	
	.header {
		padding-top: 80px;
		padding-bottom: 45px;
	}
}
@media ( max-height: 550px ) {	
	.header {
		padding-top: 40px;
		padding-bottom: 25px;
	}
}

input {
	height: 36px;
	width: 390px;
	box-sizing: border-box;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 13px;
	outline: none;
	font-size: 15px;
}

input:focus {
	border: 1px solid #234c98;
}

#alert_span {
	color: #A4A4A4;
	font-size: 14px;
	cursor: pointer;
}

#alert_span:hover {
	color: #333;
	text-decoration: underline;
}

.form_btn {
	background-color: #f37321;
	color: #000;
	padding: 0px;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.line {
	height: 1px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gray;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: gray;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: gray;
}

footer {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

footer p {
    margin: 0 0 10px;
}