* {
    box-sizing: border-box;
}

.container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.container-wrapper .header {
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    font-weight: 400;
    max-height: 95px;
}

.container-wrapper .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.container-wrapper .text-center {
    display: inline-flex;
    align-items: center;
}

.action {
    text-align: end;
}

.action button {
    text-transform: uppercase;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: center;
    font-family: unset;
    box-shadow: none;
    transition-duration: 0.3s;
    padding: 8px 16px;
    line-height: 16px;
    margin-left: 32px;
    font-weight: 700;
    border-radius: 6px;
}

.download-btns {
    display: flex;
    justify-content: space-evenly;
}

.download-btns img {
    width: 40%;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex: 1;
    text-align: center;
    width: 440px;
    padding: 24px;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 16px;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
}

.input-wrapper input {
    border: 0;
    border-bottom: 2px solid lightgrey;
    outline: none;
    min-width: 180px;
    font-size: 16px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.5);
}

.input-wrapper input:focus {
    border-bottom: 1px solid #078BEB;
}

.input-wrapper input::-moz-placeholder {
    color: transparent;
}

.input-wrapper input:-ms-input-placeholder {
    color: transparent;
}

.input-wrapper input::placeholder {
    color: transparent;
}

.input-wrapper label {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 13px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}

.input-wrapper input:focus:required:invalid {
    border-bottom: 2px solid red;
    color: red;
}

.input-wrapper input:not(:-moz-placeholder-shown) + label {
    font-size: 13px;
    margin-top: 5px;
    left: 10px;
    color: #3951b2;
    background-color: #111321;
    padding: 0 5px;
    transform: scale(0.75);
    transform-origin: 0 0;
}

.input-wrapper input:not(:-ms-input-placeholder) + label {
    font-size: 13px;
    margin-top: 5px;
    left: 10px;
    color: #D9D8D8;
    background-color: #111321;
    padding: 0 5px;
    transform: scale(0.75);
    transform-origin: 0 0;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label {
    margin-top: 8px;
    transform: scale(0.75);
    transform-origin: 0 0;
}

.label-float {
    position: relative;
    margin-bottom: 16px;
}

.label-float .password-visibility-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url(./../images/eye.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.label-float .password-visibility-toggle.visible {
    background-image: url(./../images/eye-off.svg);
}

.label-float input {
    outline: none;
    min-width: 250px;
    width: 100%;
    line-height: 24px;
    padding: 20px 16px 10px 16px;
}

.label-float input:focus {
    border-color: #078BEB;
}

.label-float input::-moz-placeholder {
    color: transparent;
}

.label-float input:-ms-input-placeholder {
    color: transparent;
}

.label-float input::placeholder {
    color: transparent;
}

.label-float label {
    pointer-events: none;
    position: absolute;
    top: 6px;
    left: 16px;
    letter-spacing: 0.4px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    box-sizing: border-box;
}

.label-float input:focus:required:invalid + label {
    color: red;
}

.label-float input:focus:required:invalid {
    color: red;
    border: 2px solid red;
}

.label-float input:not(:-moz-placeholder-shown) + label {
    top: 0;
}

.label-float input:not(:-ms-input-placeholder) + label {
    top: 0;
}

.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label {
    top: 0;
}

.info-login p {
    line-height: 16px;
    margin-bottom: 24px;
}

.info-login h3 {
    line-height: 40px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.actions-wrapper button {
    text-transform: uppercase;
    line-height: 16px;
    text-align: center;
    outline: 0;
    font-family: unset;
    box-shadow: none;
    transition-duration: 0.3s;
    border: none;
    width: 100%;
    padding: 16px 0;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: .4px;
}

.recovery-wrapper {
    text-align: right;
    margin-bottom: 24px;
}

.recovery-wrapper-login {
    text-align: center;
    margin-bottom: 24px;
}

.recovery-wrapper a {
    text-align: right;
    cursor: pointer;
    line-height: 16px;
    text-decoration: none;
}

.new-account {
    line-height: 16px;
    margin-top: 24px;
}

.new-account a {
    text-decoration: none;
    cursor: pointer;
}

.redirect-link {
    padding-left: 4px;
}

.modal {
    bottom: auto;
}

.modal-header {
    border-bottom: none;
}

.modal-content {
    border-radius: 10px;
}

.modal-body {
    text-align: center;
    color: #21262E;
    padding: 24px 32px 32px;
}

.modal-body img {
    margin-bottom: 16px;
}

.modal-body .doubts {
    margin-top: 10px;
}

.modal-body .mail {
    padding: 8px 16px;
    border-radius: 6px;
}

.resendBnt {
    position: relative;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
}

.alert-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-direction: column;
}

.result-modal {
    width: 433px;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.result-modal .modal-logo.expired {
    height: 64px;
    width: 64px;
    background-repeat: no-repeat;
}

.result-modal .modal-logo.error {
    height: 64px;
    width: 64px;
    background-repeat: no-repeat;
}

.result-modal button {
    padding: 18px;
}

.message {
    text-align: right;
    width: 67%;
}

.w-100 {
    width: 100%;
}


.loading-button {
    position: relative;
    padding: 8px 16px;
    border: none;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.loading-button-loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.password-params {
    margin-top: 0;
    font-size: 0.9em;
}

.complexy-password {
    font-size: 0.9em;
    line-height: 2;
    margin-bottom: 20px;
}

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

.password-confirmation-label {
    margin-bottom: 8px;
}

.warning-span-hidden {
    visibility: hidden;
    font-size: 12px;
}

.warning-span {
    visibility: visible;
    font-size: 12px;
}

.two-factor-code-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.31rem;
    margin-bottom: 2.74rem;
}

.two-factor-code-wrapper input {
    border-radius: 5px;
    border: 1px solid transparent;
    box-shadow: 0 0 0 0 rgb(0, 0, 0, 0.05) inset;
    font-size: 3.73rem;
    font-weight: 900;
    height: 5.3rem;
    letter-spacing: 0.4rem;
    text-align: center;
    padding: 0.5rem;
    width: 5.3rem;
    transition: border-color 220ms ease-in-out;
}

.two-factor-resend-wrapper {
    font-size: var(--font-size-xsmall);
    color: var(--color-grey-700);
    line-height: 16px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-self: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.two-factor-resend-wrapper a {
    font-size: var(--font-size-xsmall);
    margin-left: 5px;
    color: var(--color-primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.two-factor-resend-wrapper p {
    margin: 0 2px 10px;
}

.redirect-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    justify-content: flex-start;
}

.redirect-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.redirect-wrapper {
    padding: 20px;
}

.redirect-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-grey-800);
}

.redirect-description {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-grey-800);
}

.redirect-instruction {
    font-size: 14px;
    color: var(--color-grey-600);
}

.contact-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    text-align: center;
    width: 100%;
}

.contact-text{
    text-align: center;
    color: var(--color-grey-600);
}

.contact-text, .contact-whatsapp {
    width: auto;
    font-size: var(--font-size-xxsmall);
}

.contact-whatsapp {
    font-size: var(--font-size-xsmall);
    color: var(--color-primary-500);
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .modal-dialog {
        width: 660px;
        margin: 30px auto;
        padding: 24px 65px 32px;
    }

    .modal {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 600px) {
    .content {
        padding: 20px;
    }

    .redirect-title {
        font-size: 20px;
    }

    .redirect-description {
        font-size: 14px;
    }

    .redirect-instruction {
        font-size: 12px;
    }

    .contact-container-wrapper {
        flex-direction: column;
        font-size: 16px;
    }
}
