/* Estilo general */

  
  .form-container {
    background-color: black;
    padding: 30px;
    border-radius: 8px;
    float: right;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 40vh;
    margin-left:60px;
  }
  
.formulario{
    display: flex;
    width: 80%;
    padding:20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

  h1 {
    text-align: left;
    color: #ffffff;
  }
  
  /* Estilo para los grupos de entrada */
  .input-group {
    margin-bottom: 20px;
  }
  
  .input-group label {
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
    color: #ffffff;
  }
  
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .input-group input:focus,
  .input-group textarea:focus {
    border-color: #a5221d;
    outline: none;
  }
  
  /* Estilo para las columnas */
  .form-row {
    display: flex;
    justify-content: space-between;
  }
  
  .input-group.left {
    width: 45%; /* La mitad izquierda */
    float:left;  
}
  
  .input-group.right {
    width: 45%; /* La casilla grande ocupa todo el ancho disponible */
    float: right;
}


  
  /* Estilo para el botón */
  .input-group button {
    width: 100%;
    padding: 12px;
    background-color: #a5221d;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .input-group button:hover {
    background-color: #ddd;
    color:black;
  }

  .frase2 img {
    height: 25vw;
    float: left;

}

.frase2 {
    width: 80%;
    margin:auto;
}

.frase-container {
    background-color: white;
    width:60vw;
    height:20vw;
    text-align: center;
    float: right;
    padding:10px;
    border: 5px solid black;
}

h3 {
    display: block;
    font-size: 3vw;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start:0px;
    margin-inline-end:0px;
    
}

@media screen and (max-width: 600px){
    .formulario {
        width:100%;
    }

    .form-container{
        margin: 0 auto;
    }
}