 html,
 body {
     margin: 0;
     padding: 0;
     height: 100%;
     color: #ffffff;
     font-family: Arial, Helvetica, sans-serif;
 }
 .full-viewport-container {
     height: 100vh;
     padding: 0 !important;
     display: flex;
     flex-direction: column;
 }
 .row.g-0 {
     flex-grow: 1;
     height: 100%;
     flex-wrap: wrap;
 }
.continuous-scroll-wrapper {
    position: relative; /* Crucial for absolute positioning of children */
    height: 100vh; /* Ensures it takes up the full viewport height */
    overflow: hidden; /* Hides any overflowing content, especially for scrolling images */
    display: flex; /* Helps to contain children */
    justify-content: center; /* Horizontally centers content within the flex container */
    align-items: center; /* Vertically centers content within the flex container */
    padding: 0 !important; /* Remove any Bootstrap padding */
}
/* Updated overlay for a solid, semi-transparent background */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 70% opacity */
    z-index: 5; /* Above images, below text */
    pointer-events: none; /* Allows interaction with elements behind it */
}
.centered-image-text {
    position: absolute; /* Position the text absolutely within the wrapper */
    top: 50%; /* Move the top edge to the vertical center */
    left: 50%; /* Move the left edge to the horizontal center */
    transform: translate(-50%, -50%); /* Adjust for the element's own size to truly center it */
    text-align: center; /* Center the text horizontally within itself */
    color: white; /* Make the text visible over the dark overlay */
    z-index: 10; /* Ensure the text appears above the overlay */
    padding: 20px; /* Add some padding around the text */
    /* Remove background-color and border-radius as per the example image */
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* border-radius: 8px; */
    /* Font styling to match the image */
    font-family: Arial, sans-serif; /* Or a more suitable font if you know it */
    font-weight: bold; /* For the main heading */
    line-height: 1.3; /* Adjust line spacing */
    width: 80%; /* Or a fixed pixel value like 400px, adjust as needed */
    max-width: 500px; 
}
.centered-image-text p {
    font-size: 1.5em; /* Adjust font size as needed */
    margin-top: 0;
}
.image-fade-overlay {
    position: absolute;
    bottom: 0; /* Align to the bottom of the wrapper */
    left: 0;
    width: 100%;
    height: 40%; /* Adjust this value to control how much of the image is covered by the fade */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%, /* Starts opaque black at the very bottom */
            rgba(0, 0, 0, 0.0) 100% /* Fully transparent black at the top of the overlay */
        );
    z-index: 5; /* Place it between the images (z-index < 10) and the text (z-index 10) */
    pointer-events: none; /* Allows clicks/interactions to pass through to elements beneath it */
}
.scroll-track {
    display: flex; 
    height: 100%; 
    animation: scroll-left-to-right 80s linear infinite; 
    width: 200%; 
    position: relative; 
}
.scroll-track img {
    height: 100%; 
    width: auto; 
    flex-shrink: 0; 
    object-fit: cover; 
}
 @keyframes scroll-left-to-right {
     0% {
         transform: translateX(0);
     }
     100% {
         transform: translateX(-50%);
     }
 }
 .content-column {
     background-color: #262626;
     padding: 0 !important;
     display: flex;
     justify-content: center;
     align-items: center;
     overflow-y: auto;
     overflow-x: hidden;
     min-height: 100vh;
 }
 .content-inner-wrapper {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 2rem 1rem;
     transform: scale(0.8);
     transform-origin: center center;
     width: 100%;
     max-width: 450px;
     box-sizing: border-box;
 }
 .app-logo {
     height: 60px;
     width: auto;
     max-width: 100%;
 }
 .welcome-text {
     font-weight: 700;
     font-size: 32px;
     line-height: 100%;
     letter-spacing: 0%;
 }
 .enter-detail-text {
     font-weight: 500;
     font-size: 14px;
     line-height: 100%;
     letter-spacing: 0%;
     color: #BCBCBC;
 }
 .login-form-input,
 .login-btn-continue,
 .separator,
 .login-btn-google {
     width: 100%;
     max-width: 450px;
     height: 60px;
     margin: 12px 0;
     text-decoration: none
 }
 .login-form-input {
     background-color: rgba(84, 83, 83, 0.6);
     border: none;
     border-radius: 6px;
     outline: none;
     color: #fff;
     font-size: 16px;
     padding: 16px 16px;
 }
 .login-form-input::placeholder {
     color: #FFFFFF;
     opacity: 1;
 }
 .login-form-input::-webkit-input-placeholder {
     color: #FFFFFF;
 }
 .login-form-input::-moz-placeholder {
     color: #FFFFFF;
     opacity: 1;
 }
 .login-form-input:-ms-input-placeholder {
     color: #FFFFFF;
 }
 .login-form-input::ms-input-placeholder {
     color: #FFFFFF;
 }
 .login-btn-continue {
     background-color: #FF3A1F;
     border: none;
     border-radius: 6px;
     outline: none;
     color: #fff;
     font-size: 20px;
     padding: 15px 20px;
     font-weight: 600;
 }
 .separator {
     display: flex;
     align-items: center;
     text-align: center;
     color: #686868;
 }
 .separator::before,
 .separator::after {
     content: '';
     flex: 1;
     border-bottom: 1px solid #777777;
 }
 .separator:not(:empty)::before {
     margin-right: .25em;
 }
 .separator:not(:empty)::after {
     margin-left: .25em;
 }
 .login-btn-google {
     background-color: #FFFFFF;
     border: none;
     border-radius: 6px;
     outline: none;
     font-size: 17px;
     padding: 20px 20px;
     color: #686868;
     display: flex;
     justify-content: center;
     align-items: center;
 }
 .login-icon-google {
     background-image: url("/asset/icons/Google-icon.png");
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     height: 24px;
     width: 24px;
     margin-right: 8px;
     flex-shrink: 0;
 }
 @media (max-width: 767.98px) {
     .row.g-0 {
         height: auto;
     }
     .continuous-scroll-wrapper {
         height: 30vh;
         min-height: 200px;
     }
     .content-column {
         min-height: 70vh;
         padding: 1.5rem 0.5rem !important;
     }
     .content-inner-wrapper {
         transform: scale(1);
         padding: 0;
         max-width: 100%;
     }
     .login-form-input,
     .login-btn-continue,
     .separator,
     .login-btn-google {
         width: 90%;
         max-width: 300px;
         margin-left: auto;
         margin-right: auto;
         height: 45px;
     }
     .welcome-text {
         font-size: 22px;
     }
     .enter-detail-text {
         font-size: 11px;
     }
     .login-btn-continue {
         font-size: 14px;
         line-height: revert-layer;
     }
     .forgotpass{
        font-size: 13px;
     }
     .login-btn-google {
         font-size: 15px;
     }
     .login-form-input {
         font-size: 14px;
         padding: 14px 14px;
     }
     .centered-image-text p {
        font-size: 1em; /* Adjust font size as needed */
        margin-top: 0;
    }
 }
 @media (min-width: 768px) {
     .continuous-scroll-wrapper {
         height: 100%;
     }
     .content-column {
         height: 100%;
     }
 }