.form-styled {
	width: 100%;
    font-size: 18px;
}

.form-styled label {
	display: block;
	clear: both;
}

.form-styled input,
.form-styled textarea,
.form-styled select {
	font-family: 'Source Code Pro', monospace;
	width: 100%;
	max-width: 100%;
	padding: 8px 12px;
	border: solid 2px #ddd;
	margin: 5px 0;
	line-height: 150%;
	background: #fff;

	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;

	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}
.form-styled select {
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none;

	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;

	background-image: url(../images/icon/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center right 10px;
}

.form-styled input:focus,
.form-styled textarea:focus,
.form-styled select:focus {
	border: solid 2px var(--color4);
	outline: none;
}

.form-styled input:-webkit-autofill,
.form-styled input:-webkit-autofill:focus {
    -webkit-box-shadow:0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

.form-styled ::-webkit-input-placeholder {color:#888888;}
.form-styled :-moz-placeholder {color:#888888;}
.form-styled ::-moz-placeholder {color:#888888;}
.form-styled :-ms-input-placeholder {color:#888888;}

.form-styled button[type="submit"],
.form-styled input[type="submit"] {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 10px 0;
    width: 240px;
    margin: 20px 0;
    border: none;
    letter-spacing: 1px;
    outline: none;
    color: #fff;
    border-radius: 5px;
    background: var(--color6);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.form-styled button[type="submit"]:hover,
.form-styled input[type="submit"]:hover {
}

.form-styled input[type="checkbox"] {
    width: auto;
    margin: 5px;
}

p.woocommerce-LostPassword {
	margin: 10px 0 0 0;
}


/* 
.form-styled input[type="radio"],
.form-styled input[type="checkbox"] {
    display:none;
}
.form-styled input[type="radio"] + label,
.form-styled input[type="checkbox"] + label {
	cursor: pointer;
}
.form-styled input[type="radio"] + label:before,
.form-styled input[type="checkbox"] + label:before {
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
	margin-right: 5px;
    border-radius: 50%;
    border: 1px solid #888;
}
.form-styled input[type="checkbox"] + label:before {
	border-radius: 2px;
}
.form-styled input[type="radio"] + label:hover:before,
.form-styled input[type="checkbox"] + label:hover:before {
	border: 2px solid #888;
}
.form-styled input[type="radio"]:checked + label:before,
.form-styled input[type="checkbox"]:checked + label:before {
    border: 2px solid #888;
    background: #888;
}
*/

