.containerFormulario {
    background-color: black;
    padding-top: 2vh;
    padding-bottom: 2vh;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
  }
  
  .containerLogoFormulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 2rem;
  }
  
  .logoFormulario {
    background-image: url(/img/LogoSvv.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 25%;
    height: 50%;
  }
  
  .emailFormulario {
    font-size: 1.2rem;
    font-weight: 100;
    font-style: italic;
    letter-spacing: 0.08rem;
  }
  
  form {
    width: 100%;
  }
  
  .campoFormulario {
    width: 80%;
    height: 5vh;
    position: relative;
    margin-top: 5vh;
  }
  
  label {
    position: absolute;
    font-weight: 200;
    font-size: 0.9em;
    letter-spacing: 0.07rem;
    transition: all 0.5s;
  }
  
  input {
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    border-bottom: 2px solid rgb(87, 8, 8);
    position: absolute;
    width: 100%;
    color: white;
  }
  
  input:hover {
    background-color: rgb(24, 24, 24);
  }
  
  .campoFormularioTextArea {
    width: 80%;
    height: 19vh;
    position: relative;
    margin-top: 5vh;
  }
  
  textarea {
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    width: 100%;
    border: 0;
    border-bottom: 2px solid rgb(87, 8, 8);
  }
  
  textarea:hover {
    background-color: rgb(24, 24, 24);
  }
  
  button {
    margin-top: 2vh;
    margin-bottom:0;
    width: auto;
    background: linear-gradient(to right, #ff4427, #7c0303);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-position: right center;
  }

  .avisoSilicon{
    width: 100%;
    height: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--verdeClaro);
    padding-top: 1vh;
    padding-bottom: 1vh;
    border-top: solid 1px var(--verde);
  }

  .avisoSilicon img{
    width: 12%;
    height: 100%;
  }

  .avisoSilicon span{
    font-size: 1.5rem;
    width: 25%;
    text-align: center;
  }
  
  
  @media screen and (max-width: 800px){
    .containerFormulario {
        flex-direction: column;
        height: 100vh;
        padding-bottom: 8vh;
    }
  
    .logoFormulario {
      width:50%;
    }
  
    form{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  
    button {
      margin-top: 5vh;
      margin-bottom:3vh;
      width: 80%;
      background: linear-gradient(to right, #ff4427, #7c0303);
      background-size: 200% auto;
      color: white;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }
  
    .avisoSilicon img{
      width: 28%;
      height: 100%;
      
    }
  
    .avisoSilicon span{
      font-size: 0.8rem;
      width: 33%;
      text-align: center;
    }
  
    
  }