.elementor-5787 .elementor-element.elementor-element-893651d{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-4eeaf15 *//* Contenedor del formulario */
.wpum-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 40px auto 0 auto;
}

/* Separación entre bloques completos */
.wpum-form p {
    margin-bottom: 30px;
}

/* Etiquetas */
.wpum-form label {
    display: block;
    font-weight: 600;
    color: #333;
}

/* Separación entre etiqueta y campo input */
.wpum-form .field {
    margin-top: 20px; /* distancia entre label y input */
}

/* Inputs */
.wpum-form input[type="text"],
.wpum-form input[type="email"],
.wpum-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus en inputs */
.wpum-form input:focus {
    border-color: rgb(232, 78, 27);
    box-shadow: 0 0 5px rgba(232, 78, 27, 0.4);
    outline: none;
}

/* Botón de registro - normal */
.wpum-form input[type="submit"].button {
    background-color: #fff;
    color: rgb(232, 78, 27);
    border: 2px solid rgb(232, 78, 27);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover del botón */
.wpum-form input[type="submit"].button:hover {
    background-color: rgb(232, 78, 27);
    color: #fff;
    border: 2px solid rgb(232, 78, 27);
}


/* Enlace de política de privacidad en el formulario */
.wpum-form a {
    color: rgb(232, 78, 27); /* rojo corporativo */
    text-decoration: none;    /* sin subrayado */
    transition: color 0.3s ease;
}

/* Hover del enlace */
.wpum-form a:hover {
    color: rgb(0, 103, 129); /* azul corporativo al pasar */
    text-decoration: none;    /* mantiene sin subrayado */
}/* End custom CSS */