* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
  }
  
  form {
    width: 240px; /* tamaño del form*/
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    height: 35px;
    padding: 10px;
  }
  
  button {
    background: crimson;
    height: 40px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    width: 100%;
  }


  #modalCargando{
    position: fixed;
    border-radius: 20px;
    border-style: hidden;
    padding: 1px 1px 1px 1px;
    gap: 1em;
    /*grid-auto-columns: 40%;
    width: 20%;
    max-width: 20%;
    background-color: #ffffff;*/

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}