*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  padding: 20px;
}
/*Estilos de la pagina de login*/
form {
  width: 400px;
  background-color: #fff;
  padding: 20px;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

h2 {
text-align: center;
margin-bottom: 20px;
}

label {
display: block;
margin-bottom: 10px;
}

input[type="text"], input[type="password"] {
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
margin-bottom: 20px;
}

input[type="submit"] {
background-color: #24b39b;
color: #fff;
padding: 10px;
border-radius: 5px;
border: none;
width: 100%;
cursor: pointer;
}

input[type="submit"]:hover {
background-color: gray;
}

/*Estilos encabezado*/

header {
  background-color: #24b39b;
  color: #fff;
  padding: 20px;
  display: flex; /* Utilizamos flexbox para controlar la disposición del contenido */
  justify-content: space-between; /* Alinea el contenido a ambos lados, separando los elementos */
  align-items: center; /* Alineamos verticalmente el contenido */
  margin-bottom: 150px;
}

header #logo {
  display: flex;
  align-items: center;
}

header #logo img {
  width: 300px; /* Cambia el tamaño de la imagen a lo que necesites */
  margin-right: 15px; /* Añade un margen izquierdo para separar la imagen del texto */
}

header #logo h1 {
  font-size: 36px;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  color: #000000; /* Color del texto */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Sombra del texto */
}

header #logo h1 img {
  margin-right: 15px;
  align-items: right;
}

.title {
  text-align: left;
  margin: 10px 0;
}

.title h1 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title span {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  font-size: 24px;
  margin-top: 20px;
}

.right-img {
  object-fit: contain;
}


header h1 {
font-size: 36px;
font-family: "Arial", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin: 0;
letter-spacing: 2px;
}
/*Fin estilo encabezado*/

/*Estilos footer*/

footer {
  background-color: #0b335a;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  position: relative;
  bottom: 0;
  margin-top: 250px;
}

footer p {
margin: 0;
}

footer a {
color: #fff;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}
/*Fin estilo footer*/	

/*Estilos container de la pagina de registro*/

.container{
position: relative;
top: center;
left: center;
}
