.page {
    height: 100%;
    width: 100%;
}

    .page .content {
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

/* Navigation */
.navbar-brand img {
    height: 35px;
    width: auto;
}

.mobile-navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 1px;
}

    .mobile-navbar-brand img:first-child {
        /* Kody image */
        position: absolute;
        height: 49px;
        left: 0;
        top: 0;
    }

    .mobile-navbar-brand img:last-child {
        /* Logo image */
        position: absolute;
        height: 40px;
        left: 40%;
    }

/* Login */
.login-container {
    height: 100%;
    margin: 0;
    padding: 0;
}

.bg-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(https://technoglobalteam.com/wp-content/uploads/2025/06/bg2.jpg);
    background-size: cover;
    height: 100vh;
    min-height: 100vh;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.koala-img {
    width: 500px;
    height: auto;
    margin-top: -100px;
}

.company-logo {
    width: 280px;
    height: auto;
    padding-bottom: 30px;
}

.btn-primary {
    font-size: 2rem;
    padding: 0.75rem 4rem;
    border-radius: 50px;
    font-weight: bold;
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
    .koala-img {
        width: 350px;
        margin-top: -60px;
    }

    .company-logo {
        width: 200px;
        margin-top: -60px;
        padding-bottom: 20px;
    }

    .btn-primary {
        font-size: 1.5rem;
        padding: 0.75rem 3rem;
    }
}

/* Small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .bg-image {
        background-image: url(https://technoglobalteam.com/wp-content/uploads/2025/06/bg2.jpg);
        background-size: cover;
    }

    .koala-img {
        width: 300px;
        margin-top: -40px;
    }

    .company-logo {
        width: 160px;
        margin-top: 0px;
        padding-bottom: 20px;
    }

    .btn-primary {
        font-size: 1.25rem;
        padding: 0.5rem 2rem;
    }
}

/* Home */
.home-container {
    display: flex;
    height: 100vh;
    overflow: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-text {
    display: flex;
    height: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: static;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .header-text h1 {
        font-size: clamp(1rem, 4vw, 3rem);
        font-weight: 600;
        margin: 0;
    }

    .header-text h2 {
        font-size: clamp(.5rem, 3vw, 2rem);
        margin: 0 0 0.5rem 0;
    }

    .header-text img {
        width: 50%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

.welcome-title {
    font-size: 60px;
    font-weight: 600;
    color: #0d6efd;
}

@media (max-width: 767.98px) {
        .header-text h2,
        .header-text h1 {
            padding-left: 0 !important;
            font-size: clamp(1rem, 6vw, 2rem);
        }

        .header-text img {
            width: 80%;
        }
}