body{
    margin: 0;
    box-sizing: border-box;
    --colorBase: #f7921f;
}

/*---------------------Header--------------------------------*/


.hdr__barra{
  width: 100%;
  max-width: 650px;
  height: 80px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content:space-around;
  align-items: center;
  gap: 20px;
}


.boton__subiraviso{
  display: flex;
  justify-self: center;
  background-color: white;
  border: 2px solid var(--colorBase);
  color: var(--colorBase);
  font-family: sans-serif;
  font-weight: bold;
  width: 120px;
  height: 35px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: background-color 1s ease;
  text-decoration: none;
}

.boton__subiraviso:hover{
  background-color: #494949;
}

.tu{
  font-family: sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.aviso{
  color: var(--colorBase);
  font-size: 17px;
}

.img_tuaviso{
  width: 75px;
  height: 22px; 
}

#nombreUsuario{
  font-family: sans-serif;
  font-size: 20px;
  color: #48e;
}




/*-------------------------------------------*/

@media (min-width:700px){

.hdr{
    max-width: 100%;
    }

.hdr__barra{
  width: 100%;
  max-width: 100%;
  align-items:center;
  justify-content: space-around;
  gap: 400px;
  white-space: nowrap;
    }

.img_tuaviso{
  width: 85px;
  height: 25px;
  }


} 






/*--------------------Main----------------------------------*/

.mn{
  width: 100%;
  max-width: 650px;
  height: auto;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mn h2{
  font-family: sans-serif;
  font-size: 20px;
  color: #48e;
}

.form_reg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--colorBase);
    width: 300px;
    height: auto;
    border-radius: 5px;
    gap: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .inputreg{
    padding: 5px;
    font-family: sans-serif;
    font-size: 15px;
    width: 250px;
    border-radius: 10px;
    border: 2px solid var(--colorBase);
    border-top: none;
    border-left: none;
    border-right: none;
   
  }

  .btnreg{
    width: 200px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--colorBase);
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    cursor: pointer;
  }

  .tipovehiculo_select{
    width: 255px;
    display: flex;
    font-family: sans-serif;
    border-radius: 10px;
    border: 2px solid var(--colorBase);
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 5px;
    background-color: white;
    color: #000;
  }
  
  .tipovehiculo_select:not(:valid) {
    color: grey;
  }



@media (min-width:650px){

  .mn{
    max-width: 100%;
  }

}




/*----------------------Footer-----------------------------*/

.ftr{
  width: 100%;
  max-width: 650px;
  height: 380px;
  max-height: 380px;
  background-color: var(--colorBase);
  border: 2px solid #000 ;
  color: azure;
  font-family: sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
  font-size: 15px;
}

.cont__1{
width: 100%;
  max-width: 200px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin: 10px;
}

.cont__1 a{
text-decoration: none;
color: white;
white-space: nowrap;
}

.ftr_tu{
font-family: sans-serif;
font-size: 20px;
font-weight: bold;
color: #000;
}

.ftr_aviso{
color: white;
font-size: 17px;
}

.ftr_separador{
background-color: white;
width: 100%;
max-width: 150px;
height: 2px; 
}

.cont_insta{
width: 100px;
height: 50px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 10px;
}

.imginsta{
width: 20px;
height: 20px;
border-radius: 5px;
}


@media (min-width:650px){

  .ftr{
    width: 100%;
      max-width: 100%;
      flex-direction: row;
      gap: 60px;
  }

  .ftr_separador{
    background-color: white;
    width: 100%;
    max-width: 2px;
    height: 150px; 
  }



} 