/* accesoqr.css */

.acceso-qr-section {
    max-width: 450px;
    margin: 40px auto 0 auto;
    padding: 32px 28px 28px 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.07);
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    margin-bottom: 100px;
}

.acceso-qr-section h3 {
    font-size: 2rem;
    color: #2d3e50;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.woocommerce-button,
.button.woocommerce-form-login__submit {
    background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
    color: #fff !important;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(78,84,200,0.07);
}
.woocommerce-button:hover,
.button.woocommerce-form-login__submit:hover {
    background: linear-gradient(90deg, #8f94fb 0%, #4e54c8 100%);
    box-shadow: 0 4px 16px rgba(78,84,200,0.12);
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 18px 0;
    font-size: 1rem;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.alert-danger {
    background: #ffeaea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #eafaf1;
    color: #27ae60;
    border: 1px solid #b7ebd3;
}

a {
    color: #4e54c8;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
a:hover {
    color: #8f94fb;
}

@media (max-width: 600px) {
    .acceso-qr-section {
        padding: 18px 8px;
        border-radius: 10px;
    }
    .acceso-qr-section h3 {
        font-size: 1.4rem;
    }
}