/* Contenedor general del formulario */
form {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: "Inter", Arial, sans-serif;
}

/* Etiquetas */
form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* Campos de texto */
form input[type="text"],
form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 18px;
    transition: all 0.25s ease;
}

/* Efecto al enfocar */
form input[type="text"]:focus,
form input[type="email"]:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.25);
    outline: none;
}

/* Botón */
form input[type="submit"],
form button,
form .btn-submit {
    width: 100%;
    padding: 12px;
    background: #1a73e8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease;
}

/* Hover del botón */
form input[type="submit"]:hover {
    background: #155ab5;
}

/* Animación suave de aparición */
form {
    animation: fadeIn 0.4s ease;
}

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

.subscription-header {
    text-align: center;
    margin-bottom: 25px;
    animation: fadeIn 0.5s ease;
}

.subscription-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.subscription-header p {
    font-size: 15px;
    color: #555;
    margin: 0 auto;
    max-width: 420px;
    line-height: 1.5;
}



/* Honeypot antispam (campo invisible para el usuario) */
.cb-hp-wrap {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Por si algún navegador intenta hacer algo raro */
.cb-hp-wrap input {
    pointer-events: none;
}

/* Honeypot oculto para bots */
.cb-hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.cb-hp-wrap input {
    pointer-events: none;
}
/* Honeypot antispam: oculto para usuarios reales */
.hp-field {
  position: absolute;
  left: -9999px;   /* se va fuera de la pantalla */
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Por si algún navegador intenta mostrarlo */
.hp-field label,
.hp-field input {
  font-size: 0;
  line-height: 0;
}


________________________________________________________________________

/* Lista de espera */

.ereader-waitlist-title {
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;          /* gris muy oscuro */
    letter-spacing: 0.02em;
}

/* Formulario */

.waitlist-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.waitlist-form {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.waitlist-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 18px;
    transition: all 0.2s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.waitlist-btn {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.waitlist-btn:hover {
    background: #1d4ed8;
}

/* Honeypot oculto para humanos, visible para bots */
.honeypot-wrapper {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}