:root{
--edb-bg: #fff;
--edb-border: #e5e7eb; /* light gray */
--edb-text: #111827; /* near-black */
--edb-muted: #6b7280; /* gray-500 */
--edb-primary: #05465B; /* your navy */
--edb-radius: 12px;
}


.edb-form{max-width:750px;margin:24px auto}
.edb-grid{}
.edb-field{position:relative; width: 100%; margin-bottom: 16px !important;}
.edb-field--full{grid-column:1/-1}
.edb-field--hidden{display:none}
.edb-field-span-2 {grid-column: 1 / span 2;}


.edb-input{width:100%;padding:32px 20px 20px !important;font-size: 20px !important;border:1px solid var(--edb-border);border-radius:var(--edb-radius);background:var(--edb-bg);font-family: 'Poppins';color:var(--edb-text);outline:none;transition:border-color .15s ease, box-shadow .15s ease}
.edb-input:focus{border-color:var(--edb-primary);box-shadow:0 0 0 3px rgba(5,70,91,.12)}


/* Floating label */
.edb-label {position:absolute;left:16px;top:30px;font-size: 16px !important;color:var(--edb-text);pointer-events:none;background:transparent;transition:all .15s ease;padding:0 4px; font-family: 'Poppins'; font-weight: 500;}


/* when focused or has value -> lift label */
.edb-field.is-focused .edb-label, .edb-field[data-force-filled="true"] .edb-label,
.edb-field.is-filled .edb-label{top:6px;left:16px;transform:none;font-size:.65rem !important; font-weight: 600;color:var(--edb-muted)}


/* Selects get a bit more top padding to align text */
.edb-select{appearance:none;background-image: url('../assets/arrow-down-form.png');background-position:calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);background-size: 15px;background-repeat:no-repeat}

.edb-field-select {
    font-size: 15px !important;
    text-transform: none !important;
}

.edb-textarea{min-height:140px;resize:vertical}


.edb-btn{display:inline-block;margin-top:8px;padding:.9rem 1.1rem;border:0;border-radius:10px;background:var(--edb-primary);color:#fff;font-weight:600;cursor:pointer}
.edb-btn:disabled{opacity:.65;cursor:not-allowed}

.edb-btn:hover:not(:disabled){background:#0d5c75;}

.edb-status{min-height:1.25rem;margin-top:8px}
.edb-status--ok{color:#0a7; font-size: 20px; margin-top: 25px; font-weight: 500;}
.edb-status--err{color:#c33; font-size: 20px; margin-top: 25px; font-weight: 500;}

.edb-children__wrap {

}
.edb-child {
    margin-top: 30px;
    background: #e6f6f9;
    padding: 10px 20px;
    border-radius: 0.5rem;
}
.edb-children__title {
    margin-top: 40px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 720px){
.edb-grid{grid-template-columns:1fr}
.edb-input {
    font-size: 16px !important;
}
.edb-field select {
    font-size: 16px !important;
    padding-right: 50px !important;
    font-family: 'Poppins', sans-serif;
}
.edb-field select option {
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif;
}
.edb-label {
    font-size: 14px !important;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 50px;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
}
}