/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 45%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .titulo-modal{
    text-align: center;
  }
  .form{
    margin: 2rem;
  }

  .contenido-form{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem;
  }
  .input input,textarea{
    padding: .9rem;
    width: 300px;
    border-radius: 5px;
    
    border-color:rgba(0,0,0,0.1);;
  }
.contenido-mensaje textarea{
    width: 100%;
}

.form form .btn-form{
    padding: 1rem;
    background-color:#28a745 ;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
}
  
 @media (max-width:768px) {
    .titulo-modal{
        font-size: 1.7rem;
    }
    .input input{
        width: 100%;
      }
      .contenido-form{
        flex-direction: column;
      }

      .modal-content {

        width: 90%;
      }
 }