.authentication-left,
.authentication-right {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.authentication-left {
    flex: 0 0 60%;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.authentication-cover-content{
   min-height: 340px;
    opacity: 1;
}

.authentication-left h3,
.authentication-left h6,
.authentication-left p {
    margin-bottom: 1rem;
}
.authentication-right {
    /* flex: 1; */
    flex: 0 0 40%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 10px;
    /* padding: 2rem; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.desktop-logo {
    height: 6rem;
}
.brand-name {
    color: #112D6E;
    font-weight: 600;
    font-size: 1.5rem;
}
.btn-primary {
    background-color: #112D6E !important;
    border: none;
}
.form-control {
    padding: 0.75rem;
    border-radius: 0.375rem;
}
.company-name {
    display: inline-block;
    min-height: 3.5rem;
    line-height: 1.2;
}
.captcha-section {
    min-height: 80px;
}

/* .company-name {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.75rem !important;
} */

@media (max-width: 768px) {
    .authentication-left {
        display: none;      /* removes from layout immediately */
    }

    .authentication-right {
        width: 100%;
        flex: 0 0 100%;
        padding: 2rem;
    }
}


/* @media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 100%;
    }
} */
/* @media (max-width: 768px) {
    .authentication-wrapper {
        flex-direction: column;
        background-position: center;
    }
    .authentication-left {
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
        order: 1;
        min-height: 0vh;
    }

    .authentication-left,
    .authentication-right {
        flex: none;
        width: 100%;
        padding: 2rem;
    }
    .authentication-right {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
    }
} */
/* .text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}
.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
} */
@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}
@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}
.animate__animated.animate__zoomIn {
    --animate-duration: 2s;
}
.visitor-counter-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;     /* Move to left */
    transform: none; 
    z-index: 9999;
}
/* Outer container */
.visitor-counter-display {
    display: flex;
    gap: 3px;
    background: #0d1b3f;
    padding: 5px 10px;
    border-radius: 5px;
    /* box-shadow: 0 0 25px #1a56ff; */
}
/* Each digit box */
.visitor-counter-display .digit-box {
    width: 15px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #3769f382;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    /* box-shadow: 0 0 15px #1a56ff inset; */
}
.refresh-btn {
    font-size: 1.2rem;
    margin-left: -12px;
    color: dimgrey;
}
#captcha_img {
    background: linear-gradient(179deg, #b32d2db8, #00000021);
    opacity: 1;
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
    text-decoration: line-through;
    text-align: center;
    padding: 2px 0px;
}
#captcha_img:focus {
    border-color: #f2f2fb;
}
.captcha-text{
    padding: 10px 10px;
}