.elementor-kit-5{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#BBBBBB;--e-global-color-text:#F0F0F0;--e-global-color-accent:#1A80B6;--e-global-color-dcb1319:#333333;--e-global-color-7c6aa05:#FFFFFF00;--e-global-color-6550b78:#105173;--e-global-color-46c630b:#A2D6F2;--e-global-color-92d1014:#FFFDD0;--e-global-color-75c7b6a:#FFFEE4;--e-global-color-efd7fcb:#1B1B1B;--e-global-typography-primary-font-family:"DM Serif Display";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-secondary-font-family:"DM Mono";--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"DM Sans";--e-global-typography-accent-font-weight:600;background-color:var( --e-global-color-efd7fcb );}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:var( --e-global-color-accent );}.elementor-kit-5 a:hover{color:var( --e-global-color-46c630b );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Contenedor principal del formulario protegido */
.post-password-form {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border: 2px solid #e1e1e1;
  padding: 30px;
  max-width: 500px;
  margin: 25px auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  animation: fadeIn 1s ease-in-out;
}
/* Texto descriptivo encima del campo de contraseña */
.post-password-form p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}
/* Campo de entrada de contraseña */
.post-password-form input[type="password"] {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 0px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
/* Efecto al enfocar el campo */
.post-password-form input[type="password"]:focus {
  border-color: #1e73be;
  box-shadow: 0 0 5px rgba(30, 115, 190, 0.4);
  outline: none;
}
/* Botón de enviar */
.post-password-form input[type="submit"] {
  background: #1e73be;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
/* Hover en botón */
.post-password-form input[type="submit"]:hover {
  background: #155a91;
  transform: translateY(-2px);
}
/* Icono encima del formulario */
.post-password-form::before {
  content: '🔒';
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  animation: bounceIn 1s ease;
}
/* Responsivo para móviles */
@media screen and (max-width: 600px) {
  .post-password-form {
    padding: 20px;
    margin: 30px 15px;
  }
  .post-password-form input[type="submit"] {
    width: 100%;
  }
}
/* Animaciones */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}/* End custom CSS */