﻿/* Estilos institucionales JAP compartidos */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('../img/fondo_mundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.boton {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 20px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.boton:hover {
  background-color: #1a252f;
}

.footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #7f8c8d;
}