/* General */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

/* Input Forms*/
/* input[type="text"], input[type="password"] */
.input{
  outline: none;
  padding: 20px;
  display: block;
  width: 300px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin: 20px auto;
}

input[type="submit"] {
  padding: 10px;
  color: #fff;
  background: #0098cb;
  width: 320px;
  margin: 20px auto;
  margin-top: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #00b8eb;
}

/* Header */
header {
  border-bottom: 2px solid #ffffff;
  padding: 20px 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
/* header a {
  text-decoration: none;
  color: #333;
} */
header {
  background-color: #ffffff;
  padding: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

header img {
  width: 200px; /* Ajusta el tamaño de la imagen según tus necesidades */
  height: auto;
  /* margin-left: 4%;  */
}

.logout-btn {
  background-color: #e74c3c;
  color: white;

  font-weight: bold;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  /* margin-top: 20px; */
  /* margin-right: 20px; */
  width: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.749); /* Add a subtle box shadow */
}


.contenedor{
  margin-right: 5%;
  margin-left: 5%;
}
h1 {
  color: black;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Ajusta los valores según tus preferencias */
  font-weight: 700; /* Puedes ajustar el grosor del texto según tus preferencias */
}

body {
  font-family: 'Open Sans', sans-serif;
}