
/* bienvenida.css*/

/* Fondo y estilo base */
body.bienvenida {
  margin: 0;
  padding: 0;
  background-color: #e7e3da;
  background-image: url("/static/img/p_bienvenida_pqia_1920_x_1080.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Raleway', sans-serif;
}

/* Botones de autenticación */
.botones-auth {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(170%, -525%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.btn-principal, .btn-secundario {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 10px;
  padding: 5px 13px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Botón principal */
.btn-principal {
  background: linear-gradient(135deg, #92180b, #92180b);
  color: #fff;
}
.btn-principal:hover {
  background: linear-gradient(135deg, #c48a38, #c48a38);
}

/* Botón secundario */
.btn-secundario {
  background: #527368;
  color: #ffffff;
}
.btn-secundario:hover {
  background: #9c9664;
}

/* Iconos de RRSS */
.fixed-footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.fixed-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin-bottom: 8px;
}

.fixed-footer .social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fixed-footer .copyright {
  font-size: 12px;
  color: #527368;
  opacity: 0.5;
  margin: 0;
}
