@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans&display=swap');


body {
    color: #fff;
    background-color: #20215d;
    padding: 0;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container-fluid{
    padding-left: 0;
    padding-right: 0;
}

.site-heading {
    display: none;
    font-family: Plus Jakarta Sans, sans-serif;
    font-style: normal;
    font-size: 35px;
    font-weight: bold;
    line-height: 48px;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

/* Style the form */
#regForm {
    max-width: 880px;
    margin: 0 auto;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

.tab-heading {
    font-family: Plus Jakarta Sans, sans-serif;
    font-style: normal;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
}

.tab-sub-heading {
    font-family: Plus Jakarta Sans, sans-serif;
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

form input[type="text"],form input[type="email"] {
    font-family: Plus Jakarta Sans, sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    cursor: text;
    box-shadow: 0 2px 4px #0000001a;
    border-radius: 0;
    ;
}

#regForm input:focus{
    outline: 1px solid #000;
}

label {
    color: #757575;
}

.progress {
    background-color: transparent;
    width: 100%;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 2px;
    width: 25%;
    background-color: #eeeeee;
    border: none;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #1488b9;
}

.form-buttons {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 25px;
    border-top: 1px solid #e2e2e2;
}

.form-buttons button {
    color: #ffffff;
    background-color: rgb(20, 136, 185);
    padding: 24px 32px;
    margin: 8px;
    border: none;
    display: flex;
    justify-content: center;
    border-radius: 2px;
    position: relative;
    min-height: 40px;
    white-space: nowrap;
}

.radio-container {
    display: block;
    position: relative;
    padding: 20px 24px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fff;
    font-size: 17px;
    color: #20215d;
    box-shadow: 0 2px 4px #0000001a;
    font-weight: bold;
}

.radio-container:hover{
    background-color: #fff;
    outline: 1px solid #000000;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-container .checkmark {
    position: absolute;
    right: 5%;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #e1e1e1;
}

.radio-container:hover input~.checkmark {
    background-color: #fff;
}

.radio-container input:checked~.checkmark {
    background-color: #fff;
    border-color: #20215d;
}

.radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 2.5px;
    left: 2.5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #20215d;
}

/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding: 20px 24px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    color: #20215d;
    box-shadow: 0 2px 4px #0000001a;
    font-weight: bold;

}

.checkbox-container:hover{
    outline: 1px solid #000;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
    position: absolute;
    right: 5%;
    height: 20px;
    width: 20px;
    background-color: transparent;
    outline: 2px solid #e1e1e1;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: #20215d;
    outline: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.content ul {
    list-style: none;
}

.content ul li::before {
    content: "";
    font-family: 'Font Awesome 6 Pro';
    display: inline-block;
    width: 2em;
    margin-left: -1.5em;
}

.btn{
    width: 100%;
    background-color: #fff;
    outline: 1px solid transparent;
    padding: 20px 24px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 4px #0000001a;
    border-radius: 0px;
    color: #20215d;
}

.btn:hover{
    background-color: #fff;
    outline: 1px solid #000;
    color: #20215d;
}

.btn.disabled{
    background-color: #fff;
    color: #afafaf;
    outline: 1px solid #000;
  }

/* Hide the browser's default checkbox */
label.btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.btn-border{
    outline: 1px solid #000;
}

.form-control:focus{
    border:none;
    box-shadow: none;
}

#regForm input[type="text"].invalid,#regForm input[type="email"].invalid{
    background-color: #fee6e5;
    border: 1px solid #cc2118 ;
}

.invalid{
    background-color: #fee6e5;
    border: 1px solid #cc2118 ;
    color: #20215d;
}

#invalid-message{
    display: none;
    font-family: Plus Jakarta Sans,sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    color: #cc2118;
    margin-top: 5px;
}

.bordered{
    outline: 1px solid #000;
}

@media only screen and (max-width: 768px) {
    .site-heading{
        font-size: 25px;
    }
    .tab-heading{
        font-size: 24px;
        line-height: 32px;
    }
    .tab-sub-heading{
        font-size: 15px;
    }
}