@font-face {
    font-family: 'open_sanslight';
    src: url('fonts/opensans-light-webfont.eot');
    src: url('fonts/opensans-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans-light-webfont.woff2') format('woff2'),
         url('fonts/opensans-light-webfont.woff') format('woff'),
         url('fonts/opensans-light-webfont.ttf') format('truetype'),
         url('fonts/opensans-light-webfont.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'open_sansbold';
    src: url('fonts/opensans-bold-webfont.eot');
    src: url('fonts/opensans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans-bold-webfont.woff2') format('woff2'),
         url('fonts/opensans-bold-webfont.woff') format('woff'),
         url('fonts/opensans-bold-webfont.ttf') format('truetype'),
         url('fonts/opensans-bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
main {
	
	width: 450px;
    margin: auto;
	justify-content: center;
	border: none;
    font-family: 'open_sansbold';
}
header {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
    background-color: black;
    align-items: center;
}
h1 {
    letter-spacing: 0.3em;
    font-family: 'open_sansbold';
    color: #e3e3e3;
}
.busqueda {
    height: 620px;
    background-image: url(../img/fadubienvenidoapp.jpg);
    
}
.botones {
    height: 80px;
    background-color: black;
}
.margen{
    display: flex;
    justify-content: center;
    padding-top: 100px;
    
}
borde{
    width: 50px;
    height: 50px;
    border: 1px solid black;
}
// Variables
$radius: 4px;

/*Typography*/
html {font: 16px 'Open sans', sans-serif;}
form label {font-size: .9em;}

/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
/* Form */
form {
  margin: 2% auto;
  padding: 1em;
  width: 320px;
  color: #aaa;
 border: .1em solid #ddd;
  border-radius: $radius;
}
.name {width: 100%;}
.name input,
.submit input,
select,
textarea {
  width: 47%;
  height: 3em;
  text-indent: .5em;
  border-top: 0;
  border-bottom: solid 1px black;
    border-left: 0;
    border-right: 0;
}
.name input[name="surname"] {float: right;}
.name input[type="mail"] {
  margin-top: 1em;
  width: 100%;
    border-bottom: solid 1px black;
}
.radio,
.dropdown,
.message,
.check,
.submit {margin-top: 1em;}
.dropdown select,
.message textarea,
.submit input {width: 100%;}
.dropdown select {color: #aaa;}
.message textarea {height: 8em;}
.radio input,
.check input {position: relative;top: 1px;}
.radio input:before,
.check input:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background: #e9e9e9;
  border-radius: $radius;
  transition: all .35s ease;
}
.radio input:before {
  border-radius: 50%;
}
.radio input:checked:before {
  top: -.1em;
  left: -.1em;
  width: .5em;
  height: .5em;
  border: .35em solid #e9e9e9;
  background: #000000;
}
.check input:checked:before {
  content: "\f00c";
  font-family: 'open_sanslight';
  color: #1abc9c;
}
.check input:before {left:-.1px;}
.submit input {
  //display: block;
  //margin: auto;
  //width: 99.5%;
  background: #ffffff;
  color: #000000;
  border: 0;
  border-bottom: solid 1px black;
  border-top: solid 1px black;
  font-size: 1em;
  font-weight: bold;
  &:focus,
  &:hover {
    background: #16a085;
    border-bottom-color: darken(#16a085, 7%);
  }
  &:active {
    background: #1bc2a2;
    border-bottom-color: darken(#1bc2a2, 7%);
  }
}
.logo{
    width: 140px;
    margin-left:180px;
}



