/* Contenedor principal de los formularios */
.wpum-form {
    margin: 0 auto; /* Centrar horizontalmente */
    max-width: 50%; /* Ocupa el 50% del ancho máximo */
    width: 100%; /* Asegura que no exceda el 100% del viewport */
    padding: 20px; /* Espaciado interno */
    box-sizing: border-box; /* Incluye padding dentro del ancho total */
}

/* Diseño responsivo: Formularios en dispositivos pequeños */
@media (max-width: 768px) {
    .wpum-form {
        max-width: 90%; /* En pantallas pequeñas, ocupa hasta el 90% */
    }
}

/* Estilos para los textos y campos dentro de los formularios */
.wpum-form label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.wpum-form .input-text,
.wpum-form .input-email,
.wpum-form .input-checkbox {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.wpum-form .input-text:focus,
.wpum-form .input-email:focus {
    border-color: #73c026;
    outline: none;
}

/* Botones del formulario */
.wpum-form .button {
    width: 100%;
    padding: 12px;
    background-color: #73c026;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpum-form .button:hover {
    background-color: #66b01f;
}

/* Enlaces de acción */
.wpum-action-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
}

.wpum-action-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.wpum-action-links a {
    color: #73c026;
    text-decoration: none;
    font-weight: bold;
}

.wpum-action-links a:hover {
    text-decoration: underline;
}