body {
background-color: #0477BF; /* Color azul */
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-style: normal;
position: relative;
overflow: hidden;
}

body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.pharex.co/wp-content/uploads/2021/12/SLIDE-4.webp') center/cover no-repeat;
opacity: 0.19;
z-index: -1;
filter: blur(1.5px);
}

.container {
display: flex;
flex-direction: column;
align-items: center;
animation: fadeIn 1.5s ease-in-out; /* Animación de entrada */
}

.logo {
width: 210px;
height: auto;
margin-bottom: 16px; /* Más espacio entre la imagen y el formulario */
}

.form-container {
display: flex;
flex-direction: column;
align-items: center;
background: rgba(255, 255, 255, 0.1); /* Fondo ligeramente translúcido para dar contraste */
width: 40rem;
padding: 40px;
border-radius: 20px; /* Bordes más redondeados */
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Sombra más suave y difusa */
animation: slideUp 1.5s ease-in-out; /* Animación de entrada */
backdrop-filter: blur(7.5px); /* Suaviza el fondo detrás del formulario */
}

.form-container h2 {
margin-bottom: 20px;
color: #ffffff;
text-align: center;
font-weight: 600;
letter-spacing: 0.6px;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
font-size: 24px; /* Aumentamos el tamaño para darle más presencia */
}

/* Botón Principal */
.form-container button {
  margin: 15px 0;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #0477BF;
  border: 2px solid rgba(254, 254, 254, 0.325);
  border-radius: 50px;
  cursor: pointer;
  width: 34rem;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Sombra suave */
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(45deg, #0c88d4, #005A92); /* Fondo degradado */
  overflow: hidden; /* Esconde cualquier contenido fuera de los bordes redondeados */
}

.form-container button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3); /* Efecto de onda brillante */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.form-container button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.17); /* Efecto de onda secundario */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: waveEffect 3.2s ease-out infinite; /* Animación de ondas sutiles */
}

.form-container button:hover {
  color: #005A92;
  background: #ffffff80;
  transform: translateY(-4px) scale(1.05); /* Efecto de elevación y agrandamiento */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Sombra más profunda */
  border-color: #005A92;
}

.form-container button:hover::before {
  width: 180%;
  height: 180%; /* Expande la onda hacia fuera */
}

.form-container button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container button span {
  position: relative;
  z-index: 1; /* Asegura que el texto esté encima de los efectos */
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); /* Sombra suave en el texto */
}

.form-container button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(4, 119, 191, 0.5);
}

/* Animación de onda suave (enfoque visual claro) */
@keyframes waveEffect {
  0% {
      width: 0;
      height: 0;
      opacity: 0.1;
  }
  50% {
      width: 150%;
      height: 150%;
      opacity: 0.2;
  }
  100% {
      width: 0;
      height: 0;
      opacity: 0.1;
  }
}
.footer {
position: absolute;
bottom: 20px;
right: 20px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.8);
text-align: right;
opacity: 0.7;
transition: opacity 0.3s ease;
}

.footer:hover {
opacity: 1; /* Mejora la visibilidad al pasar el mouse */
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideUp {
0% {
transform: translateY(50px);
opacity: 0;
}
60% {
transform: translateY(0);
opacity: 0.8;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

iframe {
border: none;
width: 100%;
height: 100%;
display: none;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
