.cbb-register-card{

    max-width:700px;

    margin:50px auto;

    background:#fff;

    border-radius:14px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cbb-register-card h2{

    margin-top:0;

}

.cbb-register-card p{

    color:#666;

    margin-bottom:30px;

}

.cbb-field{

    margin-bottom:20px;

}

.cbb-field label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.cbb-field input,
.cbb-field select{

    width:100%;

    padding:13px;

    border:1px solid #d8d8d8;

    border-radius:8px;

    font-size:15px;

    box-sizing:border-box;

}

.cbb-field input:focus,
.cbb-field select:focus{

    outline:none;

    border-color:#2271b1;

}

.cbb-row{

    display:flex;

    gap:20px;

}

.cbb-row .cbb-field{

    flex:1;

}

.cbb-country-code{

    max-width:120px;

}

.cbb-checkbox{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin:25px 0;

}

.cbb-checkbox input{

    width:auto;

    margin-top:5px;

}

.cbb-btn-primary{

    width:100%;

    background:#2271b1;

    color:#fff;

    border:none;

    padding:15px;

    border-radius:8px;

    font-size:16px;

    cursor:pointer;

}

.cbb-btn-primary:hover{

    background:#135e96;

}

@media(max-width:768px){

    .cbb-row{

        flex-direction:column;

    }

    .cbb-country-code{

        max-width:none;

    }

    .cbb-register-card{

        padding:25px;

    }

}