.custom-demo-form{
    width:100%;
    max-width:375px;
    margin:auto;
    padding:28px;
    background:#fff;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,0.12);
    font-family:"Inter",sans-serif;
}

.custom-demo-form .form-group{
    margin-bottom:18px;
}

.custom-demo-form input,
.custom-demo-form select{
    width:100%;
    height:44px;
    border:1px solid #D9DCE3;
    border-radius:10px;
    padding:0 16px;
    font-size:14px;
    color:#707070;
    background:#fff;
    outline:none;
    box-shadow:none;
}

.custom-demo-form input::placeholder{
    color:#7D7D98;
    opacity:1;
}

.custom-demo-form select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
    padding-right:40px;
}

.phone-row{
    display:flex;
    gap:10px;
    margin-bottom:18px;
}

.country-code{
    width:90px;
}

.phone-field{
    flex:1;
    position:relative;
}

.phone-field input{
    padding-right:45px;
}

.phone-icon{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
    color:#777;
}

.custom-demo-form button{
    width:100%;
    height:46px;
    border:none;
    border-radius:50px;
    background:#1296F3;
    color:#fff;
    font-size:20px;
    font-weight:500;
    cursor:pointer;
    margin-top:24px;
}

.custom-demo-form button:hover{
    opacity:0.95;
}


input[type=tel], input[type=text]{
    border: 1px solid #D9DCE3 !important;
}

.span-red{
    color: red;
}
@media(max-width:767px){

    .custom-demo-form{
        padding:22px;
        border-radius:24px;
    }

    .custom-demo-form button{
        font-size:17px;
    }
}