* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}
body{
  background-image: url(../SRC/registro.png);
  height:100vh;
  width: 100vw;
  background-position: center;
  background-size: cover;
}
nav {
  width: 100%;
  position: fixed;
  background-color: transparent;
  color: #ffffff;
  z-index: 100;
  margin:auto;
}
#bars {
  position: absolute;
  left: 600px;
}
nav::after {
  content: "";
  clear: both;
  display: table;
}
nav ul {
  float: right;
  list-style: none;
  margin-right: 40px;
  position: relative;
}
nav ul li {
  float: left;
  display: inline-block;
  background: transparent;
  line-height: 50px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  line-height: 60px;
  font-size: 20px;
  padding: 9px 15px;
  margin: 10px;
}

.fontsize {
  font-size: 20px;
  padding: 8px 10px;
}

nav ul li a:hover {
  border-radius: 5px;
  color: #ffd166;
}

nav ul ul {
  position: absolute;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: top 0.2s;
}

nav ul li:hover > ul {
  top: 60px;
  opacity: 1;
  visibility: visible;
  z-index: 20;
}
nav ul ul li {
  position: relative;
  margin: 0px;
  width: 250px;
  float: none;
  display: list-item;
  border-bottom: 1px solid #ffd166;
  text-align: left;
}

.logo-nav {
  margin-top: 10px;
  background-color: transparent;
  float: left;
}

/*---------------------RESPONSIVE SIDENAV---------------*/

.show,
.input,
.icon {
  display: none;
}



/*                    AQUÍ TERMINA EL NAV          */
/*       EMPIEZAN LOS ESTILOS DE FORMULARIO PARA CREAR CUENTA DE VENTOS EXPRESS */


/* ----------------NUEVO FORMATO INICIO DE SESIÓN-------------*/

.background{
  height:100vh;
  width: 100vw;
  position: absolute;
}

.form-box{
  width: 470px;
  height: 100vh;
  position: relative;
  margin: 6% auto;
  background:#ffffff;
  padding:5px;
  border-radius: 10px;
  overflow: hidden;
}

.button-box{
  width: 240px;
  margin: 30px auto;
  position:relative;
  box-shadow: 0 0 10px 3px #e0e0e0;
  border-radius: 30px;
}
.toogle-btn{
  padding-left:10px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  background:transparent;
  outline: none;
  position:relative;
  border: none;
}

#elegir {
  top: 0;
  left: 0;
  position: absolute;
  width: 120px;
  height: 100%;
  background-color:#ffd166;
  border-radius: 30px;
  transition: .8s;
}

.ventos{
  margin: 35px auto;
  text-align: center;
}

.ventos > img {
  box-shadow: 0 0 10px 3px #e0e0e0;
  border-radius: 50%;
}

.input-group {
top: 230px;
position: absolute;
width: 280px;
transition: .8s;

}

.input-inicio{
  font-size: 18px;
  border: 1px solid #079992;
  padding: 5px;
  width:100%;
  margin-top:10px;
  margin-bottom:10px;
  border-radius: 3px;
  outline:none;

}
.submit-btn{
  background-color: #079992;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  width: 100%;
  border-radius: 3px;
  border: none;
  outline: none;
  font-family: 'merriweather';
  margin-top: 20px;

}

.select-inicio{
  margin-bottom: 10px;
  background-color: #ffd166;
  color: #000;
  padding: 8px;
  width: 100%;
  border-radius: 3px;
  border: none;
  outline: none;
}

span{
  position: absolute;
  font-size: 12px;
  color: #454448;
}

#inicia-sesion{
  left: 100px;
}

#registrarse{
  top: 200px;
  left: 500px;
}

.registro-input {
  top: 190px;
  position: absolute;
  width: 280px;
  transition: .8s;
  
  }


.input-register{
  font-size: 12px;
  margin: 2px;
  width: 100%;
  border: 1px solid #079992;
  padding: 6px;
  border-radius: 3px;
  outline:none;
}

.btn{
  display: flex;
  background-color: #07999215;
  color: #079992;
  padding: 8px;
  font-size: 15px;
  width: 100%;
  border-radius: 3px;
  border: none;
  outline: none;
  font-family: 'merriweather';
  cursor: pointer;
 justify-content: center;
}

.switch{
  font-size: 10px;
}

/*------------MEDIA QUERIES--------------*/

@media screen and (max-width: 756px) {

  nav{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
  }
  nav ul {
    margin-right: 0px;
    float: left;
  }

  nav .logo-nav {
    padding-left: 30px;
    width: 100%;
  }

  nav ul li,
  nav ul ul li {
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 40px;
    border-bottom: none;
    }

  nav ul ul {
    top: 90px;
    position: static;
    border-top: none;
    float: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .show {
    display: block;
    color: #ffffff;
    font-size: 20px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }

 
  .show:hover {
    color: #ffffff;
  }

  .icon {
    position: absolute;
    display: block;
    right: 40px;
    line-height: 70px;
    font-size: 25px;
    cursor: pointer;
  }

  .show + a,
  ul {
    display: none;
  }

  [id^="btn"]:checked + ul {
    display: block;
  }
  .background{
    margin-top: 50px;
    height:100vh;
    width: 100vw;
    position: absolute;
  }
}