* {
    margin: 0;
    padding: 0
}

html {
    height: 100%
}

h2 {
    font-weight: 600;
    font-size: 30px;
}

#msform {
    min-height: 900px;
    position: relative;
    margin-top: 20px
}

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

.form-card {
    text-align: left
}

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

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #0098a2;
    outline-width: 0
}

#msform .action-button {
    width: 110px;
    background: #10f4db;
    font-weight: bold;
    border: 0 none;
    border-radius: 16px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #0098a2;
    color: white;
}

#msform .action-button-previous {
    width: 100px;
    background: #7a7a7a;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 16px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.fieldlabels {
    text-align: left
}

.margin-left {
    margin-left: 20px;
}
.margin-right {
    margin-right: 20px;
}

#progressbar {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    color: #c2c2c2;
    position: relative;
}

#progressbar:before {
    font-family: 'FontAwesome';
    content: "\f111";
    position: absolute;
    left: 0px;
    top: 18px;
    color: #8d5ffd;
}
#progressbar:after {
     font-family: 'FontAwesome';
     content: "\f111";
     position: absolute;
     right: 0px;
     top: 18px;
     color: #c2c2c2;
 }

#progressbar.allActive:after {
    color: #8d5ffd;
}

#progressbar .active {
    color: #8D5FFC
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: 'FontAwesome';
    content: "\f1ad"
}

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

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

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #c2c2c2;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

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

#progressbar li.active:before,
#progressbar li.active:after {
    background: #8D5FFC;
}

.form-card {
    display: grid;
    grid-template-columns: 50% 50%;
}
.smallInput {
    width: 24%;
}
.mediumInput {
    width: 55%;
    margin-left: 10px;
}

/* Customize the label (the container) */
.containerCheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.containerCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 2px solid #8d5ffc;
}

/* On mouse-over, add a grey background color */
.containerCheckbox:hover input ~ .checkmark {
    background-color: #d2beff;
}

/* When the checkbox is checked, add a blue background */
.containerCheckbox input:checked ~ .checkmark {
    background-color: #8d5ffc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerCheckbox .checkmark:after {
    left: 9px;
    top: 3px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.action-button:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}


@media screen and (max-width: 992px) {
    .form-card {
        grid-template-columns: 100%;
    }
    .form-card .margin-right, .form-card .margin-left {
        margin: 0;
    }
    #progressbar li {
        font-size: 12px;
        overflow: hidden;
    }
    #progressbar li strong {
        line-break: normal;
    }

    h1 {
        font-size: 38px;
        line-height: 43px;
        margin-bottom: -20px;
    }
    .smallContainer {
        margin-top: 30px;
    }

}