@import "form-checkbox.css";

form {
	margin: auto;
	padding: 80px 0 0 0;
    
    width: 100%;
	
	overflow: hidden;
}

input, textarea {
	float: left;
	
	margin-bottom: 20px;
	padding: 10px 0;
	
	width: calc(100% - 2px);

	border: 1px solid #999;

	font-family: Source;
    font-size: 20px;
    text-align: center;
	color: #745a59;
}

textarea {
	height: 150px;
}

@media all and (orientation: portrait) {
}

@media all and (orientation: landscape) {
	form > input:nth-child(n+1):nth-child(-n+3) {
		width: calc(30% - 2px);
	}

	form > input:nth-child(2) {
		margin-right: 5%;
		margin-left: 5%;
	}
}


::-webkit-input-placeholder, :-ms-input-placeholder {
    color: #999;
}

::-moz-placeholder, :-moz-placeholder {
    color: #999;
    opacity: 1;
}

form #url {
	margin: 0;
	padding: 0;

    border: none;
    
    font-size: 1px;
	line-height: 1px;
}


/* botones */


.boton {    
	display: block;
	cursor: pointer;
	
	margin: 20px 0 0 0;
	padding: 20px 0;
    
    width: 100%;

	border-radius: 6px;
    border: none;
    
    background: #52914c;
	
	letter-spacing: 6px;
	text-shadow: 0 0 6px #fff;
	text-transform: uppercase;
	color: #fff;
}

.boton:hover {
    background: #377531;
}


/* aviso privacidad */

label {
    display: block;
	width: 100%;

    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    color: #999;
}

.leido {
    display: table;

    margin: auto;
	
	width: 100%;
}

.leido > div {
    display: table-cell;
    vertical-align: middle;

    height: 50px;
}


.he-leido label { color: #666; }


