body {font-family: Arial, Helvetica, sans-serif;}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
.modal button {
  background-color: #666666;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 50%;
}

.modal button:hover {
  background-color: silver;
  color: black;
  opacity: 0.8;
  overflow-y: hidden;
}

/* MARGEN INTERNA */
.container {
  padding: 10px;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  padding-top: 5px;

}

/* Modal Content/Box    sombra */
.modal-content {

  margin: 1% 1% 1% 1%; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #fff;
  border-radius: 30px;
  width: 300px; /* Could be more or less, depending on screen size */
  box-shadow: 6px 7px 19px -5px rgba(0,0,0,0.75);
  background-color: white; /* Fallback color */
}



