.coemu-primary {
  color: #800000;
}

.bg-coemu-primary {
  background-color: #800000;
  color: #fff;
}

.coemu-btn {
  background-color: #800000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid #800000;
  transition: all 0.3s ease;
}

.coemu-btn:hover {
  background-color: #fff;
  color: #800000;
  text-decoration: none;
}

/* Estilos para los enlaces de la lista */
.list-group-item a {
  color: #800000;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.list-group-item a:hover {
  color: #800000;
  padding-left: 1rem;
}

.list-group-item a::before {
  content: '›';
  position: absolute;
  left: -1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.list-group-item a:hover::before {
  left: 0;
  opacity: 1;
}

.list-group-item {
  border-color: rgba(128, 0, 0, 0.1);
}

.list-group-item:hover {
  background-color: rgba(128, 0, 0, 0.03);
}

/* Estilos para los botones de cursos */
.btn-primary {
  background-color: #800000;
  border-color: #800000;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #600000;
  border-color: #600000;
  box-shadow: 0 2px 4px rgba(128, 0, 0, 0.2);
  transform: translateY(-1px);
}

.btn-info {
  background-color: #004080;
  border-color: #004080;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-info:hover, .btn-info:focus {
  background-color: #003366;
  border-color: #003366;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 64, 128, 0.2);
  transform: translateY(-1px);
}

/* Estilos para la página de login */
.customerpage {
  padding: 3rem 0;
}

.customerpage .card {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.customerpage .card-body {
  padding: 2rem;
}

.customerpage .fs-25 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.customerpage .btn-block {
  padding: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customerpage .btn-block i {
  font-size: 1.2rem;
}

.customerpage .text-primary {
  color: #800000 !important;
  font-weight: 500;
  text-decoration: none;
}

.customerpage .text-primary:hover {
  text-decoration: underline;
}

.wrapper.wrapper2 {
  padding: 0;
}

/* Estilos para los formularios de login */
.customerpage .mail,
.customerpage .passwd {
  margin-bottom: 1.5rem;
}

.customerpage label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.customerpage input[type="email"],
.customerpage input[type="password"],
.customerpage input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.customerpage input[type="email"]:focus,
.customerpage input[type="password"]:focus,
.customerpage input[type="text"]:focus {
  border-color: #800000;
  box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.1);
  outline: none;
}

.customerpage .submit {
  margin: 2rem 0;
}

.customerpage .submit input[type="submit"] {
  width: 100%;
  background-color: #800000;
  border: none;
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customerpage .submit input[type="submit"]:hover {
  background-color: #600000;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(128, 0, 0, 0.2);
}

.customerpage .alert {
  border: none;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.customerpage .alert-primary {
  background-color: rgba(128, 0, 0, 0.1);
  color: #800000;
}

.customerpage .alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

.customerpage .d-flex a {
  color: #800000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.customerpage .d-flex a:hover {
  text-decoration: underline;
}

.coemu-btn {
  background-color: #800000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  
}

/* Estilos responsive para el navbar */
@media (max-width: 991.98px) {
  .navbar-brand img {
    max-height: 40px;
  }
  
  .navbar .d-flex {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    border: none;
    background-color: rgba(255,255,255,0.1);
  }
  
  .dropdown-item {
    color: #fff;
  }
  
  .dropdown-item:hover {
    background-color: rgba(255,255,255,0.2);
  }
}