body{
    background: #418BCA;
    background: linear-gradient(142deg, rgb(16 61 128) 29% 52%, rgb(13 228 172) 100%);
    height: 100vh;
}
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 90% !important;
}
.glass-card input.form-control::placeholder {
    color: #eaeaea;
}
.glass-card .btn-primary {
    background: #3C64B1;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}
.glass-card a {
    color: #3C64B1;
    text-decoration: none;
}
.glass-card a:hover {
    text-decoration: underline;
}

/* Carousel Rows */
.carousel-row {
    height: 150px;
    position: relative;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    gap: 20px;
    align-items: center;
    position: absolute;
    white-space: nowrap;
}


/* Animations */
.track-left {
    animation: scroll-left 20s linear infinite;
}
.track-right {
    animation: scroll-right 22s linear infinite;
}

@keyframes scroll-left {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes scroll-right {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.carousel-img {
    height: 120px;
    width: 300px;
    object-fit: cover;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    padding: 20px;
}
.right-section{
    /* background image */
    background-image: url('/img/maddox/bg-image.jpg');
    background-size: cover;
    background-position: center;
}
.description{
    font-size: 1.2rem;
    font-family: 'mangal';
}

/* Loader */
.fullscreen-loader {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
    opacity: 0.7;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 110px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #113E80 #0000;
    animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.loader::before {
    border-color: #0BE4AB #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader::after {
    margin: 8px;
}
@keyframes l16 {
    100%{transform: rotate(1turn)}
}

.loader-message {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .glass-card {
        width: 100% !important;
    }

    .service-logo-section{
        display: none !important;
    }

    .mdx-logo{
        height: 35px !important;
    }

    .Sign-title{
        font-size: 1.3rem !important;
    }

    .square-blue {
        width: 15px !important;
        height: 15px !important;
        margin-right: 5px !important;
    }
    .form-group{
        font-size: 0.9rem !important;
    }
    #message{
        margin-bottom: 0px !important;
    }
    
}