main {
    min-height: calc(100vh - var(--pl-footer-height-desk));
}

footer {
    background-color: #464141;
    min-height: var(--pl-footer-height-desk);
}

footer h3 {
    font-size: 18px;
    font-weight: 500;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0;
}

footer a {
    font-size: 14px;
    font-weight: 500;
    color: #FCFCFD;
}

footer a:hover {
    color: var(--bs-secondary);
}

footer i.fa {
    font-size: 24px;
}

main .main-background {
    min-width: 100%;
    display: flex;
    align-items: center;
    background-color: #6D07E6;
}

main .main-background-oauth {
    min-width: 100%;
    min-height: calc(100vh - var(--pl-footer-height-desk));
    display: flex;
    align-items: center;
    background-color: #6D07E6;
}

main .main-background-register {
    min-width: 100%;
    min-height: calc(100vh - var(--pl-footer-height-app));
    display: flex;
    align-items: center;
    background-color: #6D07E6;
}

main .main-background-reset-password,
.main-background-update-password {
    min-width: 100%;
    min-height: calc(100vh - var(--pl-footer-height-desk));
    height: min-content;
    display: flex;
    align-items: center;
    background-color: #6D07E6;
}

#username::-webkit-input-placeholder {
    color: #666;
}

.material-icons {
    color: #6D07E6
}

.pw-panel {
    position: absolute;
    background: #FCFCFD;
    border: 1px solid #CCC;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    z-index: 50;
    padding: 10px;
    left: 10px;
    top: 50px;
    width: 320px;
    display: none;
}

.pw-panel.visible {
    display: block;
}

.pw-panel h4 {
    margin: 0 0 8px;
    font-size: 14px;
}

.requirement {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 6px 0;
    font-size: 13px;
}

.requirement .icon {
    width: 18px;
    text-align: center;
    font-weight: 700;
}

.requirement.ok {
    color: #176f2c;
}

/* verde */
.requirement.bad {
    color: #b32a2a;
}

/* rojo */

.dont-have-cuil:hover {
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 3px;
}

.field-wrap {
    position: relative;
}

.custom-label {
    position: relative;
}

.custom-label label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    transition: all .18s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
    font-size: 16px;
    color: #777;
    background: #FCFCFD;
    padding: 0 8px;
    transform-origin: top right;
    white-space: nowrap;
}

.custom-label input:focus+label,
.custom-label select:focus+label,
.custom-label select:not(:placeholder-shown)+label,
.custom-label input:not(:placeholder-shown)+label {
    top: -0.6em;
    right: 12px;
    width: min-content;
    transform: none;
    font-size: 0.75rem;
    color: #6D07E6;
    padding: 0 6px;
}

.custom-label .is-invalid+label {
    color: #e30000 !important;
}

.custom-label input.is-invalid {
    border-bottom: 1px solid #e30000 !important;
    box-shadow: 0 1px 0 0 #e30000 !important;
}

.container-form-img {
    display: flex;
    gap: 20px;
}

.container-form,
.container-form-register {
    height: auto;
    width: auto;
    margin: 50px 0;
    background-color: #FCFCFD;
    border-radius: 20px;
}

.form-container-text {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

#hidden-inputs-minor {
    display: none;
}

#no-hidden-inputs {
    display: block;
}

#logo-mobile {
    padding-top: 8vh;
    width: 80%;
}

button#open-modal {
    padding: 10px 20px;
    background-color: var(--primary-red);
    color: #FCFCFD;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

button#open-modal:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
}

#error-minor {
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: 420px;
    width: 90%;
    overflow: visible;
    box-shadow: var(--shadow);
    animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#error-minor::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    animation: backdrop-appear 0.3s ease-out;
}

@keyframes backdrop-appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.error-minor-content {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    background-color: var(--background);
    border-radius: 16px;
}

.error-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.error-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-red);
}

.error-minor-content h2 {
    color: var(--text-dark);
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.error-minor-content p {
    color: var(--text-light);
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.error-minor-content button {
    background-color: var(--primary-red);
    color: #FCFCFD;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(229, 57, 53, 0.3);
}

.error-minor-content button:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

.error-minor-content button:active {
    transform: translateY(0);
}

.login-right-img-content {
    text-align: center;
}

.login-right-img {
    animation: scale 0.5s ease-in-out forwards;
}

.form-login-container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-login-image {
    max-width: 400px;
}

.form-register-title {
    color: #6D07E6 !important;
    font-weight: 600 !important;
}

.form-register-subtitle {
    color: #637381;
    margin: 0 0 10px 0;
}

.form-password-title {
    margin: 64px 0;
}

.form-login-title,
.form-register-title,
.form-password-title {
    color: #464141;
    font-size: 28px;

}

.footer-block-1 {
    margin-top: 32px;
    text-align: center;
}

.footer-block-2 {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.footer-block-3 {
    margin-top: 32px;
    text-align: center;
}

.footer-block-1 img {
    width: 47px;
}

.card-option {
    padding: 20px !important;
    background: #FCFCFD !important;
    border: 1px solid #ABABBA !important;
    border-radius: 20px !important;
}

.card-option:hover {
    background: #D2F9F5 !important;
    border-color: #0A524A !important;
    cursor: pointer;
}

.height-100 {
    min-height: calc(100vh - var(--pl-footer-height-desk));
}

.h1-center-margin {
    margin-bottom: 40px;
}

.loading-page {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.loading-page-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-page-spinner {
    position: relative;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #FCFCFD;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

#chatbot {
    position: fixed;
    bottom: 15px;
    right: 28px;
    width: 80px;
    height: 80px;
    z-index: 500;
    cursor: pointer;
    transition: filter 0.25s;
}

#chatbot img {
    width: 80px;
    height: 80px;
}

#chatbot:hover {
    filter: drop-shadow(0 4px 4px rgb(0 0 0 / 50%));
}

#chatbot-modal {
    display: none;
    position: fixed;
    bottom: 106px;
    right: 10px;
    width: 300px;
    height: 400px;
    z-index: 500;
    border-radius: 10px;
    border: 1px solid #EEE;
    overflow: hidden;
}

#chatbot-modal .title {
    background-color: #6D07E6;
    color: #FCFCFD;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    justify-content: space-between;
    flex-direction: row;
    font-size: 16px;
}

#chatbot-modal .content {
    background-color: #FCFCFD;
    width: 100%;
    height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
}

#chatbot-page1 {
    display: block;
    padding: 16px;
}

#chatbot-page2 {
    display: none;
    padding: 0;
}

#chatbot-page1 a,
#chatbot-page1 button {
    color: #FCFCFD;
}

#chatbot-modal .bold-text {
    font-size: 16px;
    font-weight: bold;
}

#chatbot-modal-help {
    display: none;
    position: fixed;
    bottom: 85px;
    right: 130px;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #6D07E6;
    background-color: #FCFCFD;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
    z-index: 500;
}

.is-mobile-hidden,
.display-web {
    display: block;
}

.is-mobile-show,
.display-app {
    display: none;
}

.form-login-image-web {
    margin-top: 64px;
}

.form-register-image-web,
.form-login-image-web {
    margin-left: 0;
    display: flex;
    margin-top: 24px;
}

.form-login-image-web img,
.form-register-image-web img {
    width: 300px;
}

.progress-bar {
    height: 4px;
    width: 50%;
    margin-top: -2px;
    background-color: var(--bs-primary);
}

.form-login-image-app-mobile {
    margin-top: 64px;
}

.form-register-image-app-mobile {
    margin-top: 12px;
}

.form-login-image-app-mobile img,
.form-register-image-app-mobile img {
    width: 160px;
    height: 140px;
}

.hidden {
    overflow: hidden;
}

.stepper-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-size: 16px;
    color: #637381;
    text-align: center;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.stepper-item[data-active="true"] .step-counter {
    background-color: #6D07E6;
}

.step-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #bf8ef7;
    margin-bottom: 6px;
    color: #FCFCFD;
    z-index: 10;
}

.step-name {
    margin-bottom: 6px;
    font-size: 16px;
}

.step-name.selected {
    font-weight: bold;
    color: #464141;
}

.line-connector {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
}

.icon-helper {
    background-color: #464141;
    width: 20px;
    height: 20px;
    display: flex;
    color: #FCFCFD;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    position: absolute;
    top: 0.8em;
    right: 1.7em;
}

.icon-helper:hover {
    color: #FCFCFD;
    background-color: #6D07E6;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@media (max-width: 1139.98px) {

    .container {
        padding: 0;
    }

    .container-form-img {
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .container-form {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0;
        border-end-start-radius: 0;
        border-end-end-radius: 0;
    }

    #inputs-main-register {
        display: flex;
        flex-direction: column;
    }

    .container-form-register {
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        min-height: 60vh;
        margin: 0;
        border-end-start-radius: 0;
        border-end-end-radius: 0;
    }

    .form-login-container {
        width: 100%;
    }

    .form-login-image {
        max-width: 300px;
    }

    .form-login-title {
        text-align: left;
        font-size: 24px;
    }

    .form-register-image-web,
    .form-login-image-web {
        height: 100%;
    }

    .form-register-title {
        text-align: left;
        font-size: 24px;
    }

    .form-container-text {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-register-subtitle {
        text-align: left;
    }

    .form-login-image-app {
        margin-bottom: 64px;
    }

    .is-mobile-hidden,
    .display-web {
        display: none;
    }

    .is-mobile-show,
    .display-app {
        display: block;
    }

    .btn-large {
        font-size: 14px;
        line-height: 40px;
        height: 40px;
    }

    .container {
        max-width: 1140px;
    }
}

@media (max-width: 899.98px) {
    main {
        min-height: calc(100vh - var(--pl-footer-height-app)) !important;
    }

    footer {
        min-height: var(--pl-footer-height-app) !important;
    }

    .footer-block-1 {
        margin-top: 24px;
    }

    .footer-block-2 {
        margin-top: 24px;
    }

    .footer-block-3 {
        margin-top: 24px;
    }

    .footer-block-1 img {
        width: 42px;
    }

    .login-right-img-content {
        text-align: right;
    }

    .login-right-img {
        height: 170px;
        z-index: 10;
    }

    #chatbot {
        bottom: 10px;
        right: 16px;
        width: 60px;
        height: 60px;
    }

    #chatbot img {
        width: 60px;
        height: 60px;
    }

    #chatbot-modal {
        bottom: 80px;
    }
}

@media (max-width: 599.98px) {
    .footer-block-2 {
        justify-content: flex-start;
    }
}

@keyframes scale {
    from {
        transform: scale(0.6);
    }

    to {
        transform: scale(1);
    }
}