 .form .inform {
    width: 100%;
    padding: 0;
    border-bottom-right-radius: 100px;
    color: #ffffff;
    font-size: 18px;
    box-sizing: border-box;
}

.form .heading {
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
    line-height:42px;
}
.inform ul {
    list-style-type: none;
}
.inform li {
    margin-bottom: 15px;
    padding: 0;
}
.inform ul li:before{
    display: none;
}
.inform li:last-child {
    margin-bottom: 0;
}
.inform label.error {
    border: 0 !important;
    color: #fac3c3 !important;
    font-size: 12px;
    font-weight: 400;
}
.inform label {
    display: block;
    font-weight: 400;
    margin-bottom: 3px;
    color: #12265a !important;
    font-size: 16px;
}

.inform .radio {
    display: inline-block;
    margin-right: 10px;
    background-color: #ffffff;
    color: #333;
    border-radius: 4px;
    height: 42px;
    padding: 10px 10px;
    box-sizing: border-box;
    vertical-align: middle;
}

.inform .radio label {
    display: inherit;
    font-weight: normal;
    line-height: 20px;
    color: #333 !important;
}

.inform .radio input {
    width: 20px;
    height: 20px;
}

.inform input[type="text"],
.inform input[type="number"],
.inform input[type="email"],
.inform select,
.inform textarea {
    width: 100%;
    display: block;
    height: 52px;
    max-width: 100%;
    margin: 0;
    border: 1px solid #ebe9e5;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    outline: none;
    border-radius: 26px;
    transition: 0.3s;
    background: #ffffff;
}
.inform textarea {
    height: auto;
    min-height: auto;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding: 0 10px;
}
.inform .word-counter { font-size: 12px; margin-top: 4px;color: #333; }
.inform .word-counter.warn { color: #b45309; }   /* near limit */
.inform .word-counter.max  { color: #b91c1c; }   /* at limit */

body .inform button[type="submit"] {
    position: relative;
    background: #ffc85b;
    border-color: #ffc85b;
    margin-top: 0;
    color: #ffffff;
    font-family: Nunito;
    font-weight: 900;
    display: inline-block;
    height: 60px;
    margin-bottom: 0;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
    padding: 6px 32px;
    font-size: 18px;
}
body .inform button[type="submit"]:hover{
    background: #45b3df;
    border-color: #45b3df;
}
body .inform button[type="submit"] svg{
    stroke: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
}
body .inform button[type="submit"]:hover svg{
    animation-play-state: running;
}
.inform input[type="submit"]:disabled, 
.inform input[type="text"]:disabled,
.inform input[type="number"]:disabled,
.inform input[type="email"]:disabled,
 .inform textarea:disabled,
 .inform select:disabled{
    background-color: #eeeeee !important;
    color: #5b7c49 !important;
}
span.radio:has(input[type="radio"]:disabled) {
    background-color: #eeeeee;
}
.box1, .box2, .prob-dsb-msg {
    display: none;
}
.No {
    color: #ff0000;
}
.Yes {
    color: #2d8500;
}
.hf-uk-msg{
    display: inline-block;
    font-size: 14px;
}
.captcha{ display: block;}
.captcha img{cursor:pointer;width:30px;vertical-align: middle;}
.captcha #matter{-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    background: #ccc;
    padding: 5px 11px 6px 10px;
    color: #000;
    font-size: 16px;
    min-width: 77px !important;
    display: inline-block;
    text-align: center;
    background: #fff;
    font-weight: 700;
}
.captcha input[name="captcha_entered"]{margin: 10px 0 0 0;}
label.error {border: 0 !important;color: red !important;font-size: 12px;}
.inform .d-inline-b{
    display: inline-block;
}
.textarea-cap .t-area{
    display: inline-block;
    width: 66%;
    vertical-align: top;
}
.textarea-cap .cap{
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin-left: 3%;
}
.three-col-desktop .room-left {
  flex: 0 0 32%;
}

.three-col-desktop .room-right {
  flex: 0 0 32%;
}
@media (min-width: 768px) {
  .three-col-desktop {
    display: flex;
    gap: 20px; /* spacing between columns */
  }
  .three-col-desktop > div {
    flex: 1;
    margin: 0 0 3px 0;
  }
}

@media (max-width: 767px) {
  .three-col-desktop {
    display: block;
  }
  .three-col-desktop > div {
    margin: 0 0 15px 0;
  }
  .textarea-cap .t-area{
    display: block;
    width: 100%;
    }
    .textarea-cap .cap{
        display: block;
        width: 100%;
        margin-left: 0%;
    }
    .three-col-desktop .room-left {
      flex: 0 0 100%;
    }
    
    .three-col-desktop .room-right {
      flex: 0 0 100%;
    }
}