
body {
    font-family: system-ui, sans-serif;
    max-width: 700px;
    margin: 40px auto;
    padding: 0 16px;
    background: #ffffff;
    color: #000000;
    align-items: center;
}

.card {
    
    border-radius: 12px;
    padding: 20px;
}

.row {
    margin-bottom: 12px;
}

.state {
    display: none;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background-color: #f5f5f5;
}

input:focus,
textarea:focus {
    border: 2px solid #c8a472;
}

.consentCheckbox {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
}
.consentCheckbox input[type="checkbox"] {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    accent-color: #c8a472;
}

button {
    padding: 10px 16px;
    border: 0;
    border-radius: 8%;
    background: #03989E;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 8%;
    -moz-border-radius: 8%;
    -ms-border-radius: 8%;
    -o-border-radius: 8%;
}
button:hover {
    background: #c8a472;
}

#call-button {
    padding: 10px 16px;
    border: 0;
    border-radius: 8%;
    background: #03989E;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    -webkit-border-radius: 8%;
    -moz-border-radius: 8%;
    -ms-border-radius: 8%;
    -o-border-radius: 8%;
}

#call-button:hover {
    background: #c8a472;
}

.status {
    margin-top: 16px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

#cf-note {
    position: fixed;
    inset: auto 0 0 0;
    padding: 8px 12px;
    text-align: center;
    font: 14px/1.3 system-ui, Segoe UI, Arial, sans-serif;
    background: #111;
    color: #fff;
    display: none
}