* {
    box-sizing: border-box;
}

body {
    background: #f6f7fc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-weight: bold;
    margin: 0;
    font-size: 2.1rem;
}

h2 {
    text-align: center;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
}

    p.msg {
        font-size: 110%;
        font-weight: 300;
    }

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.text-bolder {
    font-weight: 600;
}

button, a.button {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    text-decoration: none;
}

a.button {
    cursor: pointer;
}




button.btn-gradient, a.btn-gradient {
    border: 1px;
    border-color: transparent;
}

    button.btn-gradient:hover, button.btn-gradient.hover, a.btn-gradient:hover, a.btn-gradient.hover {
        background: linear-gradient(135deg,#028cff 0%,#02eaff 80%) !important;
        color: #FFF;
    }

button.btn-gradient, a.btn-gradient {
    background: linear-gradient(135deg,#0077db 0%,#4046b3 80%) !important;
    color: #FFF;
}

button:active, a:active {
    transform: scale(0.95);
}

button:focus, a:active {
    outline: none;
}

button.ghost, a.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

    button.ghost:hover, a.ghost:hover {
        background-color: white;
        color: #4046b3;
        text-decoration: none;
    }

    button.ghost.dark, a.ghost.dark {
        background-color: transparent;
        border-color: #0077db;
        color: #0077db;
        z-index: 100;
    }

        button.ghost.dark:hover, a.ghost.dark:hover {
            background-color: #0077db;
            color: white;
        }

button.disabled, a.disabled {
    opacity: 0.5; /* Cambia este valor según la opacidad deseada */
    pointer-events: none; /* Esto evitará que los elementos sean clicables o interactivos */
}

.content {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5% 30px;
    min-height: 100vh;
    text-align: left;
}

    .content form {
        padding-bottom: 50px;
    }

.form-group label {
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.input {
    border: none;
    padding: 10px 15px;
    width: 100%;
    border: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 45px;
    background: white;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fi {
    line-height: unset !important;
}

.form-group.invalid input.input, input.input-validation-error {
    border-color: red; /* Borde rojo para el input */
    box-shadow: 0 0 5px red; /* Glow rojo para el input */
    outline: none;
}

.customError {
    display: none;
}

.form-group.invalid span.customError {
    display: inline-block;
}

.select2-container .select2-selection--single, .select2-container .select2-selection--multiple {
    border: none !important;
    padding: 10px 15px !important;
    width: 100% !important;
    border: none !important;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
    border-radius: 4px !important;
    height: 45px !important;
    background: white !important;
}

.select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown--above {
    border: none !important;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;*/
    border-radius: 4px !important;
    box-shadow: 0 8px 12px 1px rgba(29,17,51,.04), 0 3px 16px 2px rgba(9,32,77,.12), 0 5px 10px -3px rgba(29,17,51,.12) !important;
}

.select2-results__options li {
    color: #555 !important;
}

.select2-results__option {
    padding: 10px 15px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: linear-gradient(135deg,#028cff 0%,#4046b3 80%) !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow, .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    top: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow, .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    right: 10px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 5px !important;
    padding-left: 10px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0px !important;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 22px !important;
    margin-top: 0px !important;
}
/* margin-top: 5px; */
blockquote {
    width: 100%;
}

    blockquote p {
        border-left: 6px solid #0077db;
        padding: 0.5rem 0.7rem;
        line-height: 2.2rem;
        background-color: white;
        font-weight: 400;
        font-size: 1.1rem;
        border-radius: 5px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    }


.form-recovery {
    font-weight: 500;
    font-size: 0.95rem;
}

    .form-recovery:hover {
        text-decoration: underline;
    }

.sign-in-container, .sign-up-container {
    background-color: #f6f7fc;
    overflow-y: hidden;
}

#LoginContainer {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    overflow-y: auto;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
    overflow-y: auto;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

#LoginContainer.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

#LoginContainer.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

#LoginContainer.right-panel-active .overlay-container {
    transform: translateX(-100%);
}



.overlay {
    background: #4046b3;
    background: -webkit-linear-gradient(to right, #028cff, #4046b3);
    background: linear-gradient(135deg,#028cff 0%,#4046b3 80%) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

#LoginContainer.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
    margin-top: 3.5%;
}

.overlay-content {
    max-width: 600px;
    text-align: left;
}

.overlay-left {
    transform: translateX(-20%);
}

#LoginContainer.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

#LoginContainer.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

    .social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }


.feature-box {
    display: flex;
}

    .feature-box .feature-box-icon.custom-feature-box-icon-size-1 {
        width: 3em;
        height: 3em;
        font-size: 20.8px;
        font-size: 1.3rem;
    }

    .feature-box .feature-box-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1 0 auto;
        background: rgba(0,0,0,.06);
        background-color: rgba(0, 0, 0, 0.06);
        border-radius: 100%;
        color: #FFF;
        font-size: 16px;
        font-size: 1rem;
        position: relative;
        top: 7px;
        text-align: center;
        padding: .8em;
        height: 1px;
        width: 2.7em;
        height: 2.7em;
    }

    .feature-box .feature-box-info {
        flex: 1 1 100%;
        padding-left: 15px;
    }

.bg-color-secondary, .bg-secondary {
    background-color: #028cff !important;
}

.bg-color-quaternary, .bg-quaternary {
    background-color: #32333e !important;
}

.custom-font-size-1 {
    font-size: 1.3em !important;
}

@media (max-width: 767px) {
    .sign-up-container, .sign-in-container {
        width: 100%;
    }

        .sign-up-container .content, .sign-in-container .content {
            background-color: transparent;
        }

    #LoginContainer.right-panel-active .sign-up-container {
        transform: translateX(0%);
        opacity: 1;
        animation-name: fadeInOpacity;
        animation-iteration-count: 1;
        animation-timing-function: ease-in;
        animation-duration: 1s;
        z-index: 5;
    }

    .content {
        margin-top: 0;
    }

    .overlay-container {
        display: none;
    }

    p {
        margin: 10px 0px;
    }

    @keyframes fadeInOpacity {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
}

@media (min-width: 1000px) {
    .sign-up-container .content, .sign-in-container .content {
        width: 90%;
        max-width: 600px;
    }

    .sign-up-container, .sign-in-container {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 600px) and (max-width: 730px) {
    .content {
        padding: 5% 20px;
    }
}


@media (max-height: 700px) {
    .sign-in-container, .sign-up-container {
        overflow-y: auto;
    }

    .content {
        height: 130%;
    }
}



#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loaded {
    opacity: 0;
    pointer-events: none;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #000;
    text-align: center;
    padding: 5px 0;
    z-index: 100;
}

.glass-container {
    background: rgba(255, 255, 255, 0.7); /* Ajusta el nivel de transparencia */
    backdrop-filter: blur(10px); /* Ajusta la cantidad de desenfoque */
}

    .glass-container p {
        font-weight: 400;
        color: #333;
    }


.cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #003298;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    -webkit-animation: cube 12s ease-in forwards infinite;
    animation: cube 12s ease-in forwards infinite;
}

    .cube:nth-child(2n) {
        border-color: #0051f4;
    }

    .cube:nth-child(2) {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        left: 15vw;
        top: 30vh;
    }

    .cube:nth-child(3) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        left: 85vw;
        top: 60vh;
    }

    .cube:nth-child(4) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        left: 90vw;
        top: 10vh;
    }

    .cube:nth-child(5) {
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
        left: 10vw;
        top: 85vh;
    }

    .cube:nth-child(6) {
        -webkit-animation-delay: 8s;
        animation-delay: 8s;
        left: 80vw;
        top: 15vh;
    }

@-webkit-keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}


.grecaptcha-badge {
    bottom: 40px !important;
}


.confetti {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}

    .confetti-piece:nth-child(1) {
        left: 7%;
        -webkit-transform: rotate(-40deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 182ms;
        -webkit-animation-duration: 1116ms;
    }

    .confetti-piece:nth-child(2) {
        left: 14%;
        -webkit-transform: rotate(4deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 161ms;
        -webkit-animation-duration: 1076ms;
    }

    .confetti-piece:nth-child(3) {
        left: 21%;
        -webkit-transform: rotate(-51deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 481ms;
        -webkit-animation-duration: 1103ms;
    }

    .confetti-piece:nth-child(4) {
        left: 28%;
        -webkit-transform: rotate(61deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 334ms;
        -webkit-animation-duration: 708ms;
    }

    .confetti-piece:nth-child(5) {
        left: 35%;
        -webkit-transform: rotate(-52deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 302ms;
        -webkit-animation-duration: 776ms;
    }

    .confetti-piece:nth-child(6) {
        left: 42%;
        -webkit-transform: rotate(38deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 180ms;
        -webkit-animation-duration: 1168ms;
    }

    .confetti-piece:nth-child(7) {
        left: 49%;
        -webkit-transform: rotate(11deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 395ms;
        -webkit-animation-duration: 1200ms;
    }

    .confetti-piece:nth-child(8) {
        left: 56%;
        -webkit-transform: rotate(49deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 14ms;
        -webkit-animation-duration: 887ms;
    }

    .confetti-piece:nth-child(9) {
        left: 63%;
        -webkit-transform: rotate(-72deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 149ms;
        -webkit-animation-duration: 805ms;
    }

    .confetti-piece:nth-child(10) {
        left: 70%;
        -webkit-transform: rotate(10deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 351ms;
        -webkit-animation-duration: 1059ms;
    }

    .confetti-piece:nth-child(11) {
        left: 77%;
        -webkit-transform: rotate(4deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 307ms;
        -webkit-animation-duration: 1132ms;
    }

    .confetti-piece:nth-child(12) {
        left: 84%;
        -webkit-transform: rotate(42deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 464ms;
        -webkit-animation-duration: 776ms;
    }

    .confetti-piece:nth-child(13) {
        left: 91%;
        -webkit-transform: rotate(-72deg);
        -webkit-animation: makeItRain 1000ms infinite ease-out;
        -webkit-animation-delay: 429ms;
        -webkit-animation-duration: 818ms;
    }

    .confetti-piece:nth-child(odd) {
        background: #7431e8;
    }

    .confetti-piece:nth-child(even) {
        z-index: 1;
    }

    .confetti-piece:nth-child(4n) {
        width: 5px;
        height: 12px;
        -webkit-animation-duration: 2000ms;
    }

    .confetti-piece:nth-child(3n) {
        width: 3px;
        height: 10px;
        -webkit-animation-duration: 2500ms;
        -webkit-animation-delay: 1000ms;
    }

    .confetti-piece:nth-child(4n-7) {
        background: red;
    }

@-webkit-keyframes makeItRain {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(500px);
    }
}
