body {
    color: rgb(255, 255, 255);
    font-family: sans-serif;
    padding: 10px;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('/static/img/GCM_02.jpeg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.logo {
    max-height: 90px;
    width: auto;
    transition: all 0.3s ease-in-out;
}

.header-title h5,
.header-title h3,
.header-title h6 {
    margin: 0;
}

footer {
    background: linear-gradient(90deg,#082c6c,#0d4fb8);
    color:white;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    width: 100%;
}

/* MOBILE */
@media (max-width: 767.98px) {
    .logo {
        max-height: 60px;
    }

    .header-title h5 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .navbar .btn {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 50px;
    }

    .header-title h5 {
        font-size: 0.9rem;
    }
}

    .login-card {
        max-width: 900px;
        width: 100%;
        margin: auto;
        margin-top: 30px;
    }
    .login-card .login-card-body {
        padding: 20px;
    }
    .login-card .login-card-image {
        padding: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
    .login-card-image-img {
        background-color: rgba(255, 255, 255, 0.070);
        border-radius: 10%;
        max-height: 250px;
        width: auto;
    }
    @media (max-width: 767px) {
        .login-card .login-card-image {
            border-right: none;
            border-bottom: 1px solid rgb(255, 255, 255);
        }
        .login-card-image-img {
            max-height: 180px;
        }
        .login-card .login-card-body {
            padding: 1rem;
            
        }
    }
