    .pro-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    cursor: pointer;
    user-select: none;
}

/* Hide default checkbox */
.pro-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkbox */
.pro-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 1.8px solid #b5b5b5;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.pro-checkbox:hover .checkmark {
    border-color: #007bff;
}

/* Checked */
.pro-checkbox input:checked + .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

/* Check icon */
.pro-checkbox .checkmark::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

/* Show check icon */
.pro-checkbox input:checked + .checkmark::after {
    display: block;
}

/* Disabled */
.pro-checkbox input:disabled + .checkmark {
    background-color: #f1f1f1;
    border-color: #ccc;
    cursor: not-allowed;
}

.pro-checkbox input:disabled ~ span {
    color: #aaa;
}
     .form-center-wrapper {
         margin-top:100px;
          /*padding: 50px;*/
          padding-bottom:20px;
        background-color: rgba(255, 255, 255, 0.85); /* white with opacity */
        border-radius: 12px;
    }
    .form-floating-input {
          /* Background layers: image on top, white underneath */
        background:
            url('../Content/Images/Overview/header-reg-caption.jpg') no-repeat top center,
            #ffffff;  /* fallback / body color */
         background-size: 100% 65px; /* full width, auto height */

        border-width: 0;
        /*background: white;*/
        /*padding: 20px;*/
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    /* Optional: ensure header stretches full width */
.custom-group-header {
    width: 400px;
    margin: 0;
    padding: 0px 0px 5px 0px;/* control spacing INSIDE header */
    box-sizing: border-box;
    background-color: transparent;

    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 600;       /* semi-bold like your screenshot */
    font-size: 20px;        /* adjust based on container */
    color: #ffffff;         /* white text as in your image */
    line-height: 1.2;       /* nice spacing */
    text-align: center;     /* center if needed */
    letter-spacing: 0.5px;  /* slight spacing for clarity */

    display: flex;
    flex-direction: column;   /* stack title + link vertically */
    justify-content: flex-start; /* top */
    align-items: flex-start;      /* horizontal center */
    text-align: center;       /* inline text centered */
    padding-top:5px;    
    
}
    .dx-txtbx-design {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;

        width: 100%;
        padding: 8px;
        /*margin-top: 10px;*/
        border-radius: 10px;

        border-color: #9f409a;
    }
       .dx-txtbx-design-disabled {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;

        width: 100%;
        padding: 8px;
        /*margin-top: 10px;*/
        border-radius: 10px;

        background-color:#D9D9D9;
        border-color: #969696;
    }
    .dx-txtbx-caption {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
}
    .dx-txtbx-caption-disabled {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 200;
        letter-spacing: 0.3px;
        color:lightgray;
        font-style:italic;
    }
    /* Target all captions */
.dx-txtbx-caption-MI {
       font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;

    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Add the info icon after caption text */
.dx-txtbx-caption-MI::after {
     content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background-image: url('/Content/Images/Overview/info-icon.png'); /* path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    vertical-align: middle;

}

/* Optional: hover effect */
.dx-txtbx-caption-MI::after:hover {
    content: url('/Content/Images/info-icon-hover.png'); /* hover icon */
}


    .btn-comp {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    width: 100%;
    padding: 8px;
    margin-top: 30px;
    border-radius: 10px;

    background-color: #9f409a;
    color: #ffffff;
    border: none;
    cursor: pointer;

    transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Hover effect */
.btn-comp:hover {
    background-color: #8a3585;   /* slightly darker */
    transform: translateY(-2px);
     box-shadow: 0 6px 15px rgba(159, 64, 154, 0.35);
}

/* Optional: active (click) effect */
.btn-comp:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

    .btn-res {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    width: 100%;
    padding: 8px;
    margin-top: 30px;
    border-radius: 10px;

    background-color: #ffffff;
    border: 2px solid #9f409a;
    color: #9f409a;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Hover effect */
.btn-res:hover {
    background-color: #9f409a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(159, 64, 154, 0.35);
}

/* Active (click) effect */
.btn-res:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(159, 64, 154, 0.35);
}


.dx-radiogroup .dx-radiobutton-icon {
    width: 15px !important; /* Reduce width */
    height: 15px !important; /* Reduce height */
}


.notice-header
{
    font-style: italic;
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 350;       /* semi-bold like your screenshot */
    font-size: 18px;        /* adjust based on container */
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000000;
}

.notice-body
{
    font-style: italic;
     font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 350;       /* semi-bold like your screenshot */
    font-size: 12px;        /* adjust based on container */
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000000;
    text-indent: 5em;
}

    .dx-memo-heath-caption {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
        white-space: normal !important;
}

       .dx-memo-heath-caption-pad {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
        white-space: normal !important;
        padding-bottom:50px;
}


       
.checkbox-wrapper-1 *,
.checkbox-wrapper-1 ::after,
.checkbox-wrapper-1 ::before {
box-sizing: border-box;
}
.checkbox-wrapper-1 [type=checkbox].substituted {
margin: 0;
width: 0;
height: 0;
display: inline;
-webkit-appearance: none;
-moz-appearance: none;
/*appearance: none;*/
}
.checkbox-wrapper-1 [type=checkbox].substituted + label:before {
content: "";
display: inline-block;
vertical-align: top;
height: 1.15em;
width: 1.15em;
margin-right: 0.6em;
color: rgba(0, 0, 0, 0.275);
border: solid 0.06em;
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset, 0 0 0 0.07em transparent inset;
border-radius: 0.2em;
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
background-size: 0;
will-change: color, border, background, background-size, box-shadow;
transform: translate3d(0, 0, 0);
transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
}
.checkbox-wrapper-1 [type=checkbox].substituted:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:enabled + label:active:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset;
background-color: #f0f0f0;
}
.checkbox-wrapper-1 [type=checkbox].substituted:checked + label:before {
background-color: #3B99FC;
background-size: 0.75em;
color: rgba(0, 0, 0, 0.075);
}
.checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled + label:active:before {
background-color: #0a7ffb;
color: rgba(0, 0, 0, 0.275);
}
.checkbox-wrapper-1 [type=checkbox].substituted:focus + label:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
}
.checkbox-wrapper-1 [type=checkbox].substituted:focus:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:focus + label:active:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
}
.checkbox-wrapper-1 [type=checkbox].substituted:disabled + label:before {
opacity: 0.5;
}

.checkbox-wrapper-1 [type=checkbox].substituted.dark + label:before {
color: rgba(255, 255, 255, 0.275);
background-color: #222;
background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled + label:active:before {
background-color: #444;
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(255, 255, 255, 0.1) inset;
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked + label:before {
background-color: #a97035;
color: rgba(255, 255, 255, 0.075);
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled + label:active:before {
background-color: #c68035;
color: rgba(0, 0, 0, 0.275);
}
.checkbox-wrapper-1 [type=checkbox].substituted + label {
-webkit-user-select: none;
user-select: none;
}

