/* AZUL PROTECTION PAGE - CLEAN IMPLEMENTATION */

/* Wix Variables */
:root {
    --color_15: 63, 85, 121;
}

/* SOLO aplicar cuando la página de protección está activa */
body.azul-protection-active {
    background-color: #ebe6e0 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 10px !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* Reset SOLO para elementos dentro del contenedor de protección */
.azul-protection-container * {
    background: transparent;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* Contenedor principal - como Wix */
.azul-protection-container {
    box-sizing: content-box;
    position: fixed;
    text-align: center;
    top: calc(50% - 150px);
    width: 100%;
}

/* Formulario sin fondo blanco */
.azul-protection-form {
    background: transparent;
    border-radius: 0;
    padding: 0 30px 40px 30px;
    box-shadow: none;
    text-align: center;
}

/* Título - Password Protected - EXACTO como Wix */
.azul-protection-form h1 {
    color: rgb(var(--color_15));
    font-weight: 400;
    font-size: 48px;
    line-height: .8em;
    margin-bottom: 23px;
    margin-top: 10px;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
    background: transparent;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    display: block;
}

/* Subtítulo */
.azul-protection-form p.subtitle {
    color: #718096;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Grupo del formulario */
.form-group {
    margin-bottom: 20px;
}

/* Campo de contraseña */
#azul-password {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    color: #333;
    font-family: inherit;
}

#azul-password:focus {
    outline: none;
    border-color: #4a5a79;
    box-shadow: none;
}

/* Grupo de verificación */
.verification-group {
    margin: 25px 0;
    text-align: left;
}

/* Items de checkbox - más simples */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: none;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #4a5a79;
}

.checkbox-item label {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
    font-weight: 400;
}

/* Botón - Continue to Site */
.continue-button {
    width: 100%;
    background-color: #4a5a79;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 20px;
    font-family: inherit;
    text-transform: none;
}

.continue-button:hover {
    background-color: #3d4960;
}

.continue-button:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

/* Mensaje de error */
.error-message {
    background-color: #fed7d7;
    color: #c53030;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}

/* Responsive */
@media (max-width: 480px) {
    .azul-protection-container {
        margin: 10px;
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: fixed !important;
        left: 50% !important;
        margin-left: -160px !important;
        max-width: 320px !important;
    }

    .azul-protection-form {
        padding: 30px 20px;
    }

    .azul-protection-form h1 {
        font-size: 28px;
    }
}