* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('../img/fondo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

hr {
  border-color: #1f53c5;
  margin: 14px 0px;
}

.scroll {
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
}

.scroll::-webkit-scrollbar {
  width: 12px;
}

.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  border-radius: 10px;
}

.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.margin {
  margin: 10px 0px;
}

.form-register {
  /*display: none;*/
  width: 440px;
  background: #24303c;
  padding: 30px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 4px;
  font-family: 'calibri';
  color: white;
  box-shadow: 7px 13px 37px #000;
}

.form-register h5 {
  font-size: 16px;
  color: red;
}

.form-register h4 {
  font-size: 18px;
}

.form-register h3 {
  font-size: 20px;
}

.form-register h2 {
  margin: 10px 0px;
  font-size: 22px;
}

.form-register h1 {
  font-size: 24px;
  text-align: center;
}

.controls {
  width: 100%;
  background: #24303c;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0px;
  border: 1px solid #1f53c5;
  font-family: 'calibri';
  font-size: 18px;
  color: white;
}

.form-register p {
  text-align: center;
  font-size: 18px;
}

.form-register a {
  color: white;
  text-decoration: none;
}

.form-register a:hover {
  color: white;
  text-decoration: underline;
}

.form-register .botons {
  border-radius: 8px;
  width: 100%;
  background: #1f53c5;
  border: none;
  padding: 12px;
  color: white;
  /*margin: 16px 0;*/
  margin: 10px 0px;
  font-size: 16px;
}

.form-txt {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 10px 0px;
}

/*.form-txt a {
  color: #76b28e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}*/

.div-img {
  text-align: center;
}

.div-img .img {
  width:100%;
  max-width:120px;
  max-height:120px;
}

/* Fondo modal: negro con opacidad al 50% */
.modal {
  display: none; /* Por defecto, estará oculto */
  position: fixed; /* Posición fija */
  z-index: 1; /* Se situará por encima de otros elementos de la página*/
  margin-top: 0px;
  padding-top: -100px; /* El contenido estará situado a 200px de la parte superior */
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Algura completa */
  overflow: auto; /* Se activará el scroll si es necesario */
  background-color: rgba(0,0,0,0.5); /* Color negro con opacidad del 50% */
}

/* Ventana o caja modal */
.contenido-modal {
  position: absolute; /* Relativo con respecto al contenedor -modal- */
  background-color: rgba(0,0,0,0.8);;
  margin: auto; /* Centrada */
  padding: 40px;
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: justify;
}