.bookdemo {
    max-width: 350px;
    margin: auto;
    font-family: "Inter", Sans-serif;
}

.bookdemo .form-title-demo{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.bookdemo .product-options {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.bookdemo .product-option {
    position: relative;
}

.bookdemo .product-option input[type="radio"] {
    display: none;
}

.bookdemo .card {
    border: 1px solid #ECECEC;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 115px;
    cursor: pointer;
    padding-top: 26px;
}

.bookdemo .product-option input[type="radio"]:checked+.card {
    border: 2px solid #007bff;
}

.bookdemo button[type="submit"] {

    width: 100%;
    background: #093E4D;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.bookdemo .checkmark-icon {
    position: absolute;
    top: 8px;
    right: 13px;
    width: 20px;
    height: 20px;
    display: none;
}

.bookdemo .product-option {
    position: relative !important;
    pointer-events: unset !important;
}

.bookdemo .product-option input[type="radio"]:checked+.card .checkmark-icon {
    display: block;
}

.bookdemo .select-product {
    color: #84849A;
    padding: 2px;
    position: relative !important;
    width: 100%;
    text-align: center;
}

.bookdemo .select-product span {
    padding-left: 5px;
    padding-right: 5px;

}

.bookdemo .select-product .first-line {
    padding-bottom: 4px;
}

.bookdemo .select-product .second-line {
    padding-bottom: 4px;
}

.bookdemo .input-icon {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.bookdemo .form-group input,
.bookdemo .form-group select {
    width: 100%;
    padding: 12px 40px 12px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
}

.bookdemo #country_code {
    padding: 9px 14px 9px 9px;
}

.bookdemo .form-group {
    position: relative;
    margin-bottom: 25px;
}

.bookdemo .phone-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
}

.bookdemo .phone-wrapper select {
    width: 80px;
}

.bookdemo .phone-wrapper input {
    flex: 1;
}

.bookdemo .form-group {
    --pad: .95rem;
    position: relative;
}

.bookdemo input {
    padding: var(--pad);
    border-radius: 8px;
    background-color: var(--bg);
    border: 1px solid #D5D4DC;
    color: inherit;
    width: 300px;
    outline: none;
}

.bookdemo label {
    position: absolute;
    left: var(--pad);
    top: var(--pad);
    background: var(--bg);
    padding-inline: .3em;
    transition: transform 200ms;
    pointer-events: none;
    transform-origin: left;
    translate: -.3em;
    background: #fff;
    color: #84849A;
}

.bookdemo .phone_label {
    margin-inline: 6.0em;
    margin-inline-end: 10px;
}

.bookdemo input::placeholder {
    opacity: 0;
}

.bookdemo input:focus+label,
.bookdemo input:not(:placeholder-shown)+label {
    transform: translateY(calc(-50% - var(--pad))) scale(.8);
    color: var(--accent);
}

.bookdemo select:focus+label,
.bookdemo select:not(:placeholder-shown):valid+label {
    transform: translateY(calc(-50% - var(--pad))) scale(.8);
    color: var(--accent);
}

.bookdemo input:focus {
    border: 1px solid #D5D4DC;
}

.bookdemo select:focus {
    outline: 1px solid #D5D4DC;
}

@media (max-width: 768px) {
    .bookdemo label {
        font-size: 14px;
    }
}

@media (max-width: 515px) {

    .bookdemo .select-product img {
        width: 50px;
    }

    .bookdemo .select-product {
        display: block;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .bookdemo .card {
        width: 84px;
    }
}

@media (max-width: 420px) {
    .otp-modal-content {
        width: 330px !important;
    }

    .otp-inputs {
        gap: 16px !important;
    }

    .otp-inputs input {
        width: 35px !important;
        height: 35px !important;
    }
}

@media (max-width: 420px) {
    .success-msg {
        width: 255px !important;
        height: 244px !important;
    }

    .success-msg h2 {
        font-size: 18px !important;
    }

    .success-msg p {
        font-size: 12px !important;
    }
}

