.cfb-form{
    background:#fff;
    border-radius:28px;
    box-shadow:0 24px 70px rgba(8,18,32,.14);
    padding:42px;
    border:1px solid rgba(15,23,34,.08);
    max-width:920px;
    margin:30px auto;
}

.cfb-field{
    display:block;
    margin-bottom:22px;
    color:#0d1520;
    font-weight:750;
}

.cfb-field span{
    display:block;
    margin-bottom:8px;
}

.cfb-form input,
.cfb-form select,
.cfb-form textarea{
    display:block;
    width:100%;
    border-radius:16px;
    border:1px solid rgba(15,23,34,.16);
    padding:15px 16px;
    font-size:1rem;
    background:#f7f9fc;
    color:#0d1520;
}

.cfb-form input:focus,
.cfb-form select:focus,
.cfb-form textarea:focus{
    outline:none;
    border-color:#c8a46b;
    background:#fff;
    box-shadow:0 0 0 4px rgba(200,164,107,.16);
}

.cfb-submit{
    border:0;
    border-radius:999px;
    padding:18px 30px;
    background:#c8a46b;
    color:#101722;
    font-weight:850;
    cursor:pointer;
    transition:.25s ease;
}

.cfb-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(200,164,107,.28);
}

@media(max-width:760px){
    .cfb-form{
        padding:28px 20px;
        border-radius:22px;
    }
}

.cfb-radio-group{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:10px;
}

.cfb-radio-option{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border:1px solid rgba(15,23,34,.12);
    border-radius:14px;
    background:#f7f9fc;
    cursor:pointer;
    transition:.2s ease;
}

.cfb-radio-option:hover{
    border-color:#c8a46b;
    background:#fff;
}

.cfb-radio-option input[type="radio"]{
    width:auto;
    margin:0;
    accent-color:#c8a46b;
}

.cfb-radio-option span{
    margin:0;
    font-weight:700;
}
