   #msform {
        text-align: center;
        position: relative;
        margin-top: 20px;
    }

    #msform fieldset .form-card {
        background: white;
        border: 1px solid #ccc;
        /* Menentukan warna dan gaya border */
        border-radius: 20px;
        /* Border radius untuk sudut melengkung */
        padding: 20px;
        box-sizing: border-box;
        width: 94%;
        margin: 0 3% 20px 3%;

        /* Stacking fieldsets above each other */
        position: relative;
    }

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;

        position: relative;
    }

    #msform fieldset:not(:first-of-type) {
        display: none;
    }

    #msform fieldset .form-card {
        text-align: left;
        color: #9E9E9E;
    }

    #msform .action-button {
        width: 100px;
        background: #164741;
        color: white;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 5px 8px;
        margin: 10px 5px;
        border-radius: 20px;
    }

    #msform .action-button:hover,
    #msform .action-button:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #CDD3A7;
    }

    /*Previous Buttons*/
    #msform .action-button-previous {
        width: 100px;
        background: #CDD3A7;
        font-weight: bold;
        color: #164741;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 5px 8px;
        margin: 10px 5px;
        border-radius: 20px;
    }

    #msform .action-button-previous:hover,
    #msform .action-button-previous:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #164741;
    }

    /*Dropdown List Exp Date*/
    select.list-dt {
        border: none;
        outline: 0;
        border-bottom: 1px solid #ccc;
        padding: 2px 5px 3px 5px;
        margin: 2px;
    }

    select.list-dt:focus {
        border-bottom: 2px solid skyblue;
    }

    /*The background card*/
    .card {
        z-index: 0;
        border: none;
        border-radius: 0.5rem;
        position: relative;
    }

    /*FieldSet headings*/
    .fs-title {
        font-size: 25px;
        color: #164741;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: left;
    }

    /*progressbar*/
    #progressbar {
        margin-bottom: 30px;
        overflow: hidden;
        color: lightgrey;
    }

    #progressbar .active {
        color: #000000;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 12px;
        width: 20%;
        float: left;
        position: relative;
    }

    /*Icons in the ProgressBar*/
    #progressbar #account:before {
        font-family: FontAwesome;
        content: "\f07a";
    }

    #progressbar #personal:before {
        font-family: FontAwesome;
        content: "\f007";
    }

    #progressbar #payment:before {
        font-family: FontAwesome;
        content: "\f09d";
    }

    #progressbar #confirm:before {
        font-family: FontAwesome;
        content: "\f05a";
    }

    #progressbar #finish:before {
        font-family: FontAwesome;
        content: "\f00c";
    }

    /*ProgressBar before any progress*/
    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        color: #ffffff;
        background: #CDD3A7;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
    }

    /*ProgressBar connectors*/
    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1;
    }

    /*Color number of the step and the connector before it*/
    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #164741;
    }

    .radio-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .radio {
        border: 1px solid #ccc;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 15px;
        /* Jarak bawah antar elemen */
        display: flex;
        align-items: center;
        height: 100px;
        /* Tetapkan tinggi tetap */
    }

    .radio:hover {
        box-shadow: 0 0 10px #164741;
    }

    .radio.selected {
        border-color: #CDD3A7;
        box-shadow: 0 0 10px #164741;
        background-color: #CDD3A7 !important;
        color: white;
    }

    .radio .row {
        align-items: center;
        width: 100%;
    }

    .radio img {
        width: 100%;
        border-radius: 10px;
    }

    .col-lg-6 {
        padding: 0 10px;
        /* Jarak horizontal antar elemen */
    }

    /*Fit image in bootstrap div*/
    .fit-image {
        width: 100%;
        object-fit: cover;
    }