.mt-30 {
    margin-top: 30px;
}

/* MAIN WRAPPER (force navy background and remove inline bg image) */
.new-auth-main {
    font-family: "Poppins", sans-serif;
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;

    /* NEW: ensure page background is NAVY and no image shows */
    background-color: #123d88;
    background-image: none !important;
}

.new-auth-main strong{
    font-weight: bolder;
}

/* If you want an overlay tint on top of the background, set it here */
.new-auth-main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.57;
    z-index: -1;
    /* no background so it stays clean; add one if you want a tint */
}

.new-auth-area {
    position: relative;
}

/* Decorative ring in NAVY */
.new-auth-area::after {
    position: absolute;
    content: "";
    width: 247px;
    height: 247px;
    right: -80px;
    top: -100px;
    border: 40px solid rgba(18,61,136,1); /* NAVY */
    box-sizing: border-box;
    filter: blur(2px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* Card background NAVY */
.new-auth-wrapper {
    background-color:#123d88; /* NAVY */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

/* Header SKYBLUE */
.new-auth-wrapper__top {
    padding: 60px 30px 40px 30px;
    text-align: center;
    background-color: #87CEEB; /* SKYBLUE */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Header underline wave in SKYBLUE */
.new-auth-wrapper__top::after {
    position: absolute;
    content: "";
    bottom: -24px;
    left: 5px;
    right: 5px;
    z-index: -1;
    border-width: 25px 256px 0px 256px;
    border-style: solid;
    border-color: #87CEEB transparent transparent transparent; /* SKYBLUE */
}

.new-auth-wrapper__top .title {
    font-size: 30px;
    font-weight: 600;
}
.new-auth-wrapper__top p {
    font-size: 17px;
}
.new-auth-wrapper__top h1,
.new-auth-wrapper__top h2,
.new-auth-wrapper__top h3,
.new-auth-wrapper__top h4,
.new-auth-wrapper__top h5,
.new-auth-wrapper__top h6 {
    margin: 0;
    line-height: 1.4;
}
.new-auth-wrapper__body {
    padding: 60px 40px 40px 40px;
}

.new-auth-main .form-check {
    position: relative;
    padding-left: 0;
}
.new-auth-main input:focus{
    background: transparent !important;
    color: white;
}
.new-auth-main .form-check .form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    margin-left: 0;
    opacity: 0;
}
.new-auth-main .form-check .form-check-label {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.new-auth-main label.form-check-label {
    font-size: 14px;
}
.new-auth-main label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
}
label.required:after {
    content: "*";
    color: #dc3545 !important;
    margin-left: 2px;
}

/* Checkbox checked state in SKYBLUE */
.new-auth-main .form-check .form-check-input:checked ~ .form-check-label::before{
    content: "\f00c";
    background-color: #87CEEB; /* SKYBLUE */
    font-family: FontAwesome;
    border-color: #87CEEB; /* SKYBLUE */
}
.new-auth-main .form-check .form-check-input:checked ~ .form-check-label.border-white::before{
    border-color: #fff;
}
.new-auth-main .form-check .form-check-label::before {
    position: absolute;
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s;
}

.new-auth-main .forget-text {
    color: #fff;
    text-decoration: underline;
    font-size: 0.875rem;
}
.new-auth-main .signup-text {
    color: #fff;
    text-decoration: underline;
    font-size: 0.875rem;
}

.new-auth-main .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Primary button in SKYBLUE */
.cmn-btn {
    background-color: #87CEEB; /* SKYBLUE */
    color: #fff;
    height: 50px;
}

/* keep this SKYBLUE too for consistency */
#add-group.cmn-btn {
    background: #87CEEB; /* SKYBLUE */
}
.previous.cmn-btn {
    background-color: gray;
    width:24%;
}
.form-group {
    margin-bottom: 15px;
}
.input-group{
    margin-bottom: 15px;
}

.new-auth-main .form-control {
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
}
.new-auth-main select.form-control{
    background: transparent;
    height: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #6c757d;
    font-size: 0.875rem !important;
    padding: 10px 20px;
}
.new-auth-main .input-group {
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    border-radius:5px;
}
input:not([type="radio"]), textarea {
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: transparent;
    font-size: 0.875rem !important;
}


/*Hide all except first fieldset*/
.user_registration  fieldset:not(:first-of-type) {
    display: none;
}

.user_registration  fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

/* Hover glow uses SKYBLUE */
.user_registration .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #87CEEB; /* SKYBLUE */
}

/*Previous Buttons*/
.user_registration .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.user_registration .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/*The background card*/
.user_registration .card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/*FieldSet headings*/
.user_registration .fs-title {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
.user_registration .progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

.user_registration .progressbar .active {
    color: #000000;
}
.user_registration .progressbar.show{
    display:flex;
}
.user_registration .progressbar.hide{
    display:none;
}

.user_registration .progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 25%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
.user_registration .progressbar .account:before {
    font-family: FontAwesome;
    content: "\f023";
}
.user_registration .progressbar .personal:before {
    font-family: FontAwesome;
    content: "\f007";
}
.user_registration .progressbar .address:before {
    font-family: FontAwesome;
    content: "\f041";
}
.user_registration .progressbar .confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}
.user_registration .progressbar .documentaion:before {
    font-family: FontAwesome;
    content: "\f016";
}
.user_registration .progressbar .signatories:before {
    font-family: FontAwesome;
    content: "\f0c0";
}
.user_registration .progressbar .business:before {
    font-family: FontAwesome;
    content: "\f0b1";
}
.user_registration .progressbar .additional:before {
    font-family: FontAwesome;
    content: "\f055";
}

/*ProgressBar before any progress*/
.user_registration .progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #fff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
.user_registration .progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/* Active step & connector in NAVY */
.user_registration .progressbar li.active:before, .progressbar li.active:after {
    background: #123d88; /* NAVY */
}

/*Fit image in bootstrap div*/
.user_registration .fit-image{
    width: 100%;
    object-fit: cover;
}
.field-group {
    margin-bottom: 10px;
}

.remove-group {
    margin-top: 10px;
    color: red;
    cursor: pointer;
}

@media (min-width: 1400px){
    .new-auth-main .container, .new-auth-main .container-lg,.new-auth-main .container-md,.new-auth-main .container-sm,.new-auth-main .container-xl,.new-auth-main .container-xxl {
        max-width: 1320px;
    }
}
/* Differentiate form wrapper from background */
.new-auth-main {
    background-color: #123d88 !important; /* navy */
}

.new-auth-wrapper {
    background-color: #0f2f74 !important; /* darker navy box */
}
