* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
   
   
    background-color: black;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    color: white;
  }
  .formulario {
    max-width: 50%;
    background: #fff;
    padding: 30px;
    margin: 30px;
    color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

   
    
  }
  .formulario h2 {
    margin-bottom: 20px;
    color: #333;
  }
  .formulario p {
    font-size: 16px;
    color: #555;
  }
  .formulario input, .formulario textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .formulario button {
    background: #e4101a;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }
  .mensaje {
    margin-bottom: 20px;
    font-weight: bold;
  }

.g-recaptcha {
    margin-bottom: 20px;
  }
@media(max-width: 800px) {
    body {
        font-family: Arial, sans-serif;
       
       
        background-color: black;
        width: 100vw;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        color: white;
      }
    .containerlogin {
        width: 90%;
        height: auto;
        padding: 15px;
    }
    .containerlogin form div label {
        white-space: nowrap;
        font-weight: bold;
        font-size: 12px;
    }

    .formulario {
        width: 95%;
       
        
      }
}