body {
  background-color: #f5f5f5;
  background-image: url(../../img/logonuevo.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px;
}

.container {
  margin-top: 80px;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.form-label {
  font-weight: bold;
}

.form-control {
  width: 100%;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 20px;
  padding: 5px 50px;

}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
a {
  text-decoration: none;
}

/* Menú Lateral */
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100px;
  height: 100%;
  background-color: transparent;
  color: white;
  padding-top: 20px;
  z-index: 1000; /* Asegurar que el menú esté sobre otros elementos */
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px;
  text-align: center;
}

.sidebar ul li a {
  color: #212529;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}