/*
Theme Name: Citycenter srl
Description: Tema WordPress minimal con Tailwind, Alpine.js e blocchi Gutenberg
Version: 1.0
*/

.btn-submit-custom {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 100;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #3a4fd4;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-custom:hover {
    background-color: #2e42c0;
}

.btn-submit-custom:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f5e62e;
}

.custom-check .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

form input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 3px;
    flex-shrink: 0;
}

form input[type="checkbox"]:checked {
    background-color: #3a4fd4;
    border-color: #3a4fd4;
}

form input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    left: 3px;
    top: -1px;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
} 