body{ margin: 0; }
/*img{ 
	max-width:100%;
	max-height:100%; 
	width: 100%;
    height: 100%;
}*/
a {
	color: inherit;
	text-decoration: inherit;
}
input[type=text],input[type=password],input[type=email],textarea {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
input[type=date] {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
/*SELECT INPUT START */
.select-style {
	width: 100%;
    border-radius: 3px;
    overflow: hidden;
    background: #fafafa url('/images/header/select-arrowdown.png') no-repeat 95% 50%;
    background-size: 17px;
    border: 1px solid #d1d1d1;
}

.select-style select {
	padding: 10px;
    width: 100%;
	height: 100%;
    font-weight: bold;
    font-size: 14px;
    border: none;
    color: #2e2e2e;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance:none;
}
.select-style select:focus {
    outline: none;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
/*SELECT INPUT END */
.input-label {
	font-weight: bold;
	font-size: 15px;
	text-align: left;
	cursor: default;
	padding-top: 8px;
	padding-bottom: 5px;
	color: #fff;
}
.register-field-gender{
	color: #fff;
}
.register-agree-text{
	color: #fff;
}
.input-error {
	border: 1px solid red!important;
}
.error-label {
	color: red;
	text-align: left;
	font-size: 12px;
}
.select-input {
	font-weight: bold;
	font-size: 16px; 
	color: #2e2e2e;
	background-color: #f2f2f2; 
}

.input-date-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr;
    grid-gap: 3px;
}
.date-day { grid-column: 1; }
.date-month { grid-column: 2; }
.date-year { grid-column: 3; }

input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	text-align: center;
	color: #919191;
	font-weight: bold;
	font-size: 16px;
}
input::-moz-placeholder { /* Firefox 19+ */
	text-align: center;
	color: #919191;
	font-weight: bold;
	font-size: 16px;
}
input:-ms-input-placeholder { /* IE 10+ */
	text-align: center;
	color: #919191;
	font-weight: bold;
	font-size: 16px;
}
input:-moz-placeholder { /* Firefox 18- */
	text-align: center;
	color: #919191;
	font-weight: bold;
	font-size: 16px;
}

.captcha-wrapper { 
	width: 100%;
	height: 60px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
}