* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    text-decoration: none;
}
  
  #mainCarrera{

    background: url(../Img/portadaCarrera.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    background-position: center 120px;
  }
  .instrucciones {
  background-color: white;
      padding: 20px 20px;
      border: 5px #ff3333 solid;

      
  }

  #mainCarrera h1{
    margin-top: 120px;
    border: 5px red solid;
    padding: 10px;
    background-color: #ff3333;
    color: white;
    text-align: center;
    
  }
  .instrucciones p{
    background-color: white;
  }

  .columnas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

  .instrucciones h2{
    color: red;
  }
  .whats{
    color: green;

  }

  .columna {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    box-sizing: border-box;

    border-radius: 8px;
  }
  #convocatoriaBtn{
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    background-color: #ff3333;
    transition: 0.5s ease-in-out;
    color: white;
    width: 100%;


  }
  #convocatoriaBtn:hover{
    background-color: #ffffff;
    color: #ff3333;
  }
  #convocatoriaBtn:active{
    scale: 1.05;
  }
  
  /* Formulario */
  form{
    background: rgba(27,31,34,0.80);
    width: 640px;
    margin: 50px auto 50px;
    max-width: 97%;
    border-radius: 4px;
    padding: 55px 30px;
    color: white;
  }
  select, textarea{
        color: white;
  }
  form .title h2{
    letter-spacing: 4px;
    border-bottom: 1px solid white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
  
  form .half{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  form .half .item{
    color: white;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 100%;
  }
  
  form label{
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  form .half .item input{
    border-radius: 4px;
    border: 1px solid white;
    outline: 0;
    padding: 16px;
    width: 100%;
    height: 44px;
    background: transparent;
    font-size: 17px;
    color: white;
  }
  
  form .full{
    margin-bottom: 24px;
  }
  
  form .full textarea{
    background: transparent;
    border-radius: 4px;
    border: 1px solid white;
    outline: 0;
    padding: 12px 16px;
    width: 100%;
    height: 200px;
    font-size: 17px;
  }
  
  form .action{
    margin-bottom: 32px;
  }
  
  form .action input, select{
    background: transparent;
    border-radius: 4px;
    border: 1px solid white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    height: 44px;
    letter-spacing: 3px;
    outline: 0;
    padding: 0 20px 0 22px;
    margin-right: 10px;
  }
  form option{
    color: black;
    background-color: transparent;
  }
  
  form .action input[type="submit"]{
    background: white;
    color: black;
  }
  form .action input[type="reset"]{
    color: rgb(255, 255, 255);
  }
  
  form .icons a i{
    color: #ffffff;
    border: none;
    border-radius: 1px;
    line-height: 36px;
    text-align: center;
    width: 38px;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
  }
  form .icons a i:hover{
    scale: 2;
  }
  
  form .half .item input:focus, form .full textarea:focus, form .action input[type="reset"]:hover, form .icons a:hover{
    background: rgba(255,255,255,0.075);

  }
  /* Fin Formulario */
  
  footer .footerContainer .contact .info li span i {
    color: #000000;
}

  
  @media (max-width: 480px){

    form .action{
      display: flex;
      flex-direction: column;
    }
    form .action input{
      margin-bottom: 10px;
      width: 100%;
    }
  }