.elementor-3014 .elementor-element.elementor-element-fb9842d{margin-top:50px;margin-bottom:100px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-22e5b06 *//* Animación fade-in con slide-up */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Caja estilo ficha */
#form_login_wp {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  max-width: 420px;
  margin: 30px auto;
  font-family: "Segoe UI", sans-serif;
  animation: fadeSlideUp 0.8s ease-out;
}

/* Cada campo */
#form_login_wp .login-campo {
  margin-bottom: 18px;
}

#form_login_wp .login-campo label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #333;
}

#form_login_wp .login-campo input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

#form_login_wp .login-campo input:focus {
  border-color: #EC1F26;
  outline: none;
}

/* Botón */
#form_login_wp .login-btn button {
  width: 100%;
  padding: 12px;
  background: #EC1F26;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#form_login_wp .login-btn button:hover {
  background: #b51218;
}

/* Link al registro */
#form_login_wp .login-registro-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

#form_login_wp .login-registro-link a {
  color: #EC1F26;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

#form_login_wp .login-registro-link a:hover {
  color: #b51218;
  text-decoration: underline;
}/* End custom CSS */