@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
    --maxWidth: 1300px;
    /* --bgBodyColor: #5cc589;  */
    --bgBodyColor: #e9e9e9;
    --bgHeader: rgb(241, 240, 240);
    /* --scrollBarColor: #17a052;  */
    --scrollBarColor: #2b4c81;
    --bgContainer: #fff;
    --normalTextColor: #484848;
    /* --primaryColor: #5cc589;  */
    --primaryColor: #2b4c81;
    /* --hoverNavColor: #5cc589;  */
    --hoverNavColor: #0072a8;
    --subText: #a1a1a1;
    --heading1Color: #727272;
    --tableBorder: #ccc;
    --tableHeadBgColor: #f3f3f3;
    --warning-card: rgb(229, 175, 94);
    --danger-card: rgb(229, 94, 94);
    --info-card: rgb(78 192 188);
    --bottomBarColor: #f3f3f3;
    --primary: #5cc589;
    --track-bar: #4e53c0;
    --thumb-bar: #b84f4f;
    --bgAccountHeading: #ededed;
    --font-custom-color: #064260;
    --background-sidedbar: white;
    --danger-alert: #f6ced3;
    --default-transition: 0.4s;
}

* {
    font-family: "Inter Tight", sans-serif;
}

body {
    background-color: white;
}

.modal-form-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    transition: 0.2s;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-form-container.show {
    opacity: 1;
    pointer-events: all;
}

.modal-form-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 80vh;
    max-height: 400px;
    background-color: white;
    transition: var(--default-transition);
    border-radius: 8px;
    padding: 26px;
}

.close-modal {
    position: absolute;
    top: 6px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
}

.form-content-buttons {
    height: 100%;
    overflow: hidden;
}

.carousel-login {
    position: relative;
    width: 200%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    right: 0;
    transition: 0.4s;
}

.carousel-login.right {
    right: 100%;
}

.inputs-content-identification {
    position: relative;
}

.inputs-grouper {
    display: flex;
    gap: 20px;
}

.icon-content {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 22px;
    flex-direction: row-reverse;
    padding: 0 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    background-color: white;
}

.icon-content:hover {
    background-color: var(--scrollBarColor);
    transform: translateY(-4px);
    color: white;
}

.icon-content:active {
    background-color: var(--scrollBarColor);
    transform: translateY(-2px);
}

.icon-content.icon-back {
    bottom: -84px;
    left: 0;
    color: var(--scrollBarColor);
    border: solid 5px var(--scrollBarColor);
}

.icon-content.icon-back:hover {
    background-color: var(--scrollBarColor);
    transform: translateY(-4px);
    color: white;

}

.icon-content.icon-back:active {
    background-color: var(--scrollBarColor);
    transform: translateY(-2px);
}


.icon-content.icon-next {
    bottom: -84px;
    right: 0;
    color: var(--primary);
    border: solid 5px var(--primary);
    flex-direction: row;
}

.icon-content.icon-next i {
    transform: rotate(180deg);
}

.icon-content.icon-next:hover {
    background-color: var(--primary);
    transform: translateY(-4px);
    color: white;
}

.icon-content.icon-next:active {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.icon-content p {
    margin: 8px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 10px;
}

.identification-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-form {
    background-color: white;
    border: solid 5px var(--scrollBarColor);
    color: var(--scrollBarColor);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
    height: 150px;
    width: 200px;
    position: relative;
    top: 40px;
}

.btn-form.btn-sm {
    width: 200px !important;
    height: 54px !important;
    font-size: 18px !important;
}

.btn-form i {
    font-size: 50px;
}

.btn-form p {
    font-size: 18px;
    font-weight: 600;
}

.btn-form:hover {
    background-color: var(--scrollBarColor);
    transform: translateY(-4px);
    color: white;
}

.btn-form:active {
    background-color: var(--scrollBarColor);
    transform: translateY(-2px);
}

.modal-form-container.show .modal-form-content {
    animation: openModal var(--default-transition) ease;
    max-height: 400px;
}

.modal-form-container .modal-form-content > figure{
    position: absolute;
    top: 6px;
    left: 0;
    width: 210px;
}

.modal-form-container .modal-form-content > figure img{
    width: 100%;
    height: 100%;
}


.modal-form-container.show .modal-form-content.form-inputs-content {
    width: 90%;
    height: 86vh;
    max-width: 96%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-form-container.show .modal-form-content.form-inputs-content figure{
    opacity: 0;
}

.background-form {
    background: #e9e9e9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 6px;
    animation: apearContent .6s forwards;
    opacity: 0;
}

.direction-button-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
}

.direction-button-content .next {
    justify-self: end;
}

.form-content-inputs h1 {
    text-align: center;
    font-size: 40px;
    margin-top: 8px;

}

.form-content-inputs{
    padding: 0 40px;
}
.form-content-inputs p {
    font-size: 22px;
}

.title-content h3 {
    font-size: 24px;
    color: #777;
    border-bottom: solid 1px #777;
}

.inputs-content {
    display: grid;
    gap: 30px;
    padding: 30px;
    grid-template-columns: repeat(5, 1fr);
}

.check-aport {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.check-aport input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.check-aport label {
    cursor: pointer;
    font-size: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    font-size: 18px;
    margin-top: 6px;
}

.input-group label {
    margin-left: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    height: 50px;
    text-decoration: none;
    outline: none;
    border: 2px solid rgb(226 226 226);
    border-radius: 6px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    font-size: 18px;
}

.input-group textarea {
    height: 100px;
    padding: 10px;
}

@keyframes apearContent {
    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes openModal {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

.login-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 858px;
}

.login-container .content-left {
    width: 55%;
    /* height: 90vh; */
    background-color: var(--scrollBarColor);
    display: flex;
    justify-content: center;
}



.login-container .content-left .carousel {
    position: relative;
    display: flex;
    gap: 60px;
    margin: 4% 10% 0 10%;
}

/* .animacion-img-login{
    animation-name: mover;
    animation-duration: 10s;
} 

@keyframes mover{
    100%{
        opacity: .10;
    }

    0%{
        opacity: 1;
    }
}  */

.animation-initial {
    animation-name: aparecer;
    animation-duration: 2s;
}

@keyframes aparecer {
    100% {
        opacity: 1;
    }

    0% {
        opacity: .10;
    }
}


.login-container .content-left .carousel img {
    width: 100%;
    height: 65%;
    border-radius: 6px;
    object-fit: contain;
}

/* .login-container .content-left .carousel .img2{
    visibility: hidden;
}

.login-container .content-left .carousel .img3{
    visibility: hidden;
} */

.login-container .content-left .content-left-fotter {
    position: absolute;
    bottom: 16%;
    margin: 0 4% 0 4%;
    text-align: center;
}

.login-container .content-left .content-left-fotter h1 {
    margin: 4% 0 1% 0;
    font-size: 24px;
    color: white;
    font-weight: 900;
}

.login-container .content-left .content-left-fotter h4 {
    font-size: 14px;
    color: white;
}

.login-container .content-left .content-left-fotter .progreso {
    height: 24px;
    margin: 30px 37%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.login-container .content-left .content-left-fotter .progreso .puntos {
    width: 90px;
    height: 10px;
    background-color: hwb(0 71% 23%);
    border-radius: 6px;
    cursor: pointer;
}

.login-container .content-left .content-left-fotter .progreso .puntos:hover {
    background-color: #a6a6a6;
}

.login-container .content-left .content-left-fotter .progreso .focus {
    background-color: white;
    transition: 1.4s;
}

.login-container .content-right {
    width: 45%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 26px;
    position: relative;
}

.login-container .content-right .content-info-header {
    position: absolute;
    width: 100%;
    display: flex;
    top: -300px;
    height: 100px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 8px 4px #6e6e6e85;
    background-color: #8cba37;
    gap: 12px;
    transition: 0.2s;
}

.login-container .content-right .content-info-header .icon {}

.login-container .content-right .content-info-header .icon i {
    font-size: 40px;
    color: white;
    font-weight: 500;
}

.login-container .content-right .content-info-header .text {}

.login-container .content-right .content-info-header .text p {
    font-size: 24px;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
}

.login-container .content-right .content-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70%;
    width: 100%;
    gap: 14px;
}

.login-container .content-right .password-invalid {
    position: absolute;
    display: flex;
    left: 0;
    top: -66px;
    gap: 10px;
    font-size: 75%;
    background-color: #fff13b30;
    width: auto;
    /* height: 28px; */
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    opacity: 0;
    border: 1px solid #a7a7a7cc;
}

.content-register .register-validate {
    top: -100px !important;
}

.login-container .content-right .password-invalid .text-password-invalid {
    font-size: 16px;
    color: #4b4b4b;
    font-weight: 500;
}

.login-container .content-right .password-invalid i {
    color: var(--scrollBarColor);
}

.login-container .content-right .header-login {
    /* margin-top: 12%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container .content-right .header-login img {
    width: 343px;
    height: 202px;
    object-fit: contain;
}

.login-container .content-right .header-login h1 {
    margin: 1%;
    margin-top: 2%;
}

.login-container .content-right .header-login span {
    width: 90%;
    text-align: center;
}

.login-container .content-right .column {
    position: relative;
    width: 60%;
}

.login-container .content-right .column .inputs-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 180px;
    position: relative;
}

.login-container .content-right .column .input-register {
    height: 560px;
    justify-content: initial;
    background: white;
}

.btn-container{
    /* position: absolute;
    width: 100%;
    bottom: -370px; */
}

.login-container .content-right .column .inputs-login .input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;

}

.login-container .content-right .column .inputs-login .input-container .label {
    position: absolute;
    left: 4%;
    top: -20%;
    z-index: 1;
    background-color: #f9f9f9;
    font-size: 14px;
    color: var(--scrollBarColor);
    transition: 0.5s;
}

/* .animation-label{
    position: absolute;`
    transition: 0.5s;
    top: -8px !important;
 } */

.login-container .content-right .column .inputs-login .input-container .input {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50PX;
    text-decoration: none;
    outline: none;
    border: 2px solid rgb(226 226 226);
    border-radius: 6px;
    padding-left: 4%;
    box-sizing: border-box;
    font-size: 12px;
    background-color: #f9f9f9;
    font-size: 18px;
}

input.input-disabled {
    background: #00000050;
    columns: #515151;
    cursor: no-drop;
}

.login-container .content-right .column .inputs-login .input-container i {
    position: absolute;
    right: 4%;
    bottom: 34%;
    color: #d6d6d6;
    cursor: pointer;
}

.visibility {
    visibility: hidden;
}

.display-none {
    display: none !important;
}

.login-container .content-right .column .inputs-login .input-container input:hover {
    border: 2px solid var(--scrollBarColor);
    transition: 0.2s;
}

.login-container .content-right .column .inputs-login .input-container input:focus {
    border: 2px solid var(--scrollBarColor);
    border: 2px solid var(--scrollBarColor);
    box-shadow: 0 0 4px rgb(163 163 163);
}

.login-container .content-right .column .inputs-login .row {
    position: absolute;
    left: 0;
    bottom: 0%;
    margin: 0;
    display: flex;
    gap: 1px;
    font-size: 14px;
    align-items: center;
    font-weight: 300;
    justify-content: space-between;
    width: 100%;
}


.login-container .content-right .column .inputs-login .row .register {
    color: #4e53c0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.login-container .content-right .column .btn-container .btn-login {
    width: 100%;
    margin: 10% 0;
}

.registration-button{
    position: absolute !important;
    bottom: -210px !important;
}

.login-container .content-right .column .btn-container .btn-login .btn {
    width: 100%;
    height: 50px;
    background-color: #f89420;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.login-container .content-right .form-login .btn-container .btn-login .btn.btn-disabled {
    cursor: no-drop;
    background: #f9992c;
}

.login-container .content-right .form-login .btn-container .btn-login .btn:hover {
    background-color: #db7500;
}

.login-container .content-right .form-login .btn-container .btn-login .btn:active {
    background-color: #f89420;
}

.login-container .content-right .column .content-register {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: white;
    top: 100vh;
    z-index: 9;
    transition: 0.4s;
}

.login-container .content-right .column .content-register .close {
    width: 100%;
    top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.login-container .content-right .column .content-register .close i:hover {
    transition: 0.2s;
    transform: translateY(-4px);
}

.login-container .content-right .fotter-login {
    /* position: fixed; */
    color: #656565;
    bottom: 4%;
}

.login-container .content-right .fotter-login span {
    font-size: 12px;
}

.loader {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-width: 100%;
    position: fixed;
    z-index: 5000;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    user-select: none;
    /* pointer-events: none; */
}

.loader.disable {
    transition: 0.5s 0.6s;
    opacity: 0;
    visibility: hidden;
}

.loader .loading-container {
    width: 80%;
    max-width: 500px;
    height: 50%;
    max-height: 333px;
    min-width: 162px;
    min-height: 250px;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: visible;
    transform: translate(-50%, -50%);
}

.loader .loading-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader .loading-container .logo-container {
    width: 50%;
    max-width: 180px;
    height: 50%;
    max-height: 100px;
    min-width: 100px;
    min-height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader .loading-container .logo-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.danger-text {
    color: red;
    font-size: 16px;
    font-weight: 500;
}

.error-content {
    position: absolute;
    bottom: -26px;
    width: 100%;
    text-align: center;
}

[disabled] {
    background-color: #dbdbdb !important;
    font-weight: 600 !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}


.identification-carnet-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.carnet-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
}

label.identification-carnet-card {
    height: 200px;
    width: 80%;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: solid 5px #2b4c81;
    transition: .2s;
    position: relative;
}

label.identification-carnet-card:hover {
    background: #2b4c81;
    transform: translateY(-4px);
}

label.identification-carnet-card:active {
    transform: translateY(-2px);
}

label.identification-carnet-card:hover i,
label.identification-carnet-card:hover p {
    color: white;
}

label.identification-carnet-card i {
    font-size: 70px;
    color: #2b4c81;
}

label.identification-carnet-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    border-radius: 4px;
    background: white;
}

label.identification-carnet-card p {
    color: #2b4c81;
    font-weight: 500;
}


.modal-confirmation-content {
    width: 100%;
    height: 100%;
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-confirmation-content.show {
    opacity: 1;
    pointer-events: all;
    background-color: #00000050;
}

.modal-confirmation {
    background: white;
    box-shadow: 2px 2px 5px;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 600px;
    width: 70%;
}

.modal-confirmation h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-confirmation p {
    font-size: 16px;
    margin-top: 0;
    padding-top: 0;
}

.button-content-confirmation {
    display: flex;
    justify-content: space-evenly;
}

.button-content-confirmation button {
    font-size: 18px;
    padding: 0 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    color: white;
    border: none;
    height: 44px;
}

.button-content-confirmation button.success {
    background-color: #399460;
}

.button-content-confirmation button.danger {
    background-color: #e12525;
}

.button-content-confirmation button.success:hover {
    background-color: #24814c;
}

.button-content-confirmation button.danger:hover {
    background-color: #af1818;
}

.button-content-confirmation button.success:active {
    background-color: #21a55a;
}

.button-content-confirmation button.danger:active {
    background-color: #dd3535;
}

.danger-icon {
    font-size: 50px;
    color: red;
}

.success-icon {
    font-size: 50px;
    color: #399460;
}

.required{
    border: solid 2px red !important;
    box-shadow: 0px 0px 8px red !important;
}

.required-img{
    border: solid 5px red !important;
    box-shadow: 0px 0px 10px red !important;
}


/* HTML: <div class="loader"></div> */
.loader-layer{
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;    
    opacity: 0;
    pointer-events: none;
}

.loader-layer.active{
    opacity: 1;
    pointer-events: all;
}

.modal-loader {
    width: 150px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #e1a156;
    animation: l15 1s infinite linear;
}

.modal-loader::before,
.modal-loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
}

@keyframes l15 {
    100% {
        transform: rotate(1turn)
    }
}

.modal-loader::after {
    margin: 8px;
    animation-duration: 3s;
}

.input-required{
    color: red;
    font-weight: 500;
}

.mt-16{
    margin-top: 10px !important;
}

.custom-register-validate{
    background-color: rgb(255, 252, 218);
    position: absolute;
    top: 98px;
    left: 40px;
    display: flex;
    height: 35px;
    padding: 0px 11px;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    border: 2px solid rgb(226, 226, 226);
    z-index: 500000;
    opacity: 0;
}

.show-alert {
    opacity: 1 !important;
}

.span-2{
    grid-column: span 2;
}

.span-3{
    grid-column: span 3;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: white;
    height: 40px;
    box-shadow: -2px -2px 3px #00000030;
    display: flex;
    align-items: center;
}

ul{
    list-style: none;
    display: flex;
    gap: 30px;
    font-size: 16px;
    justify-content: end;
    align-items: end;
    text-align: end;
    width: 100%;
    padding: 0 30px;
}

.contact-info{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info p{
    margin: 0;
    font-size: 15px;
    color: #656565;
}


@media (max-width: 1300px) {
    .login-container .content-right .column {
        width: 80%;
    }

    .inputs-content{
        grid-template-columns: repeat(3, 1fr);
    }

    .identification-carnet-content{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .content-left {
        display: none !important;
    }

    .content-right {
        width: 100% !important;
    }

    .login-container .content-right .content-panel {
        height: 98%;
    }

    .login-container .content-right .column {
        width: 90%;
    }

    .login-container .content-right .column .input-register {
        height: 370px;
    }
    .inputs-content{
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .inputs-content .span-2{
        grid-column: initial;
    }

    .inputs-content .span-3{
        grid-column: initial;
    }

    .direction-button-content{
        grid-template-columns: 1fr;
    }
    .btn-form.btn-sm{
        width: 100% !important;
        margin-bottom: 10px;    
    }
 
    .identification-carnet-content{
        grid-template-columns: 1fr;
    }
   
    .form-content-inputs{
        padding: 0;
    }

    .back-buttom-form{
        bottom: -30px !important;
    }
}

@media (max-width: 512px) {
    .logo-coop{
        display: none;
    }
    .btn-form{
        top: 0;
    }
    .inputs-content-identification{
        top: -40px;
    }
    .inputs-grouper{
        flex-direction: column;
    }
    .inputs-content-identification {
        width: 100%;
    }
    .input-group label{
        margin-left: 10px;
        background: white;
        padding: 1px;
        width: auto;
        border: none;
    }
    .modal-form-container.show .modal-form-content > figure{
        top: 50%;
        left: 50%;
        transform: translate(-61%, -62%);
        width: 90%;
    }

    .modal-form-container.show .modal-form-content > figure img{
        opacity: 0.5;
    }

    .btn-form{
        background: #ffffff98 !important;
    }

    .mt-16{
        margin-top: 8px !important;
    }

    .icon-content{
        font-size: 14px;
    }
    /* .icon-content.icon-next,
    .icon-content.icon-back{
        bottom: -68px;
    } */
    .inputs-grouper{
        gap: 0px;
    } 
    .custom-register-validate{
        top: 14px !important;
    }
}