@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Montserrat", sans-serif;
}
body{
    background-color:#ffffff;
    margin: 0px;
    height: 100vh;
}

.lottie-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 100px);
}

#lottie{
    background-color:transparent;
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: translate3d(0,0,0);
    text-align: center;
    opacity: 1;
}

.bg-main {
    background-image: radial-gradient(hsla(241, 100%, 77%, 0), hsla(241, 100%, 77%, 0.25));
}

.bg-pj {
    background-color: white;
    transition: background-color .5s ease;
}

.container-fluid {
    display:flex;
    width: 100vw;
    height: 100vh;
    padding: 0;
}

.logo-container {
    width:50%;
    display: flex;
    flex-direction: column;
}

.info-container {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.form-container {
    padding: 3rem 1.5rem;
}

.form-title {
    font-weight:600;
}

.form-desc {
    margin: 0;
}

.home-btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
    transition: font-size .3s ease;
}

.continue-btn {
    background-color: #212529;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    transition: gap .5s ease, font-size .3s ease;

}

.continue-btn:hover {
    background-color: #212529;
    color: white;
    gap: 1rem;
}

.img-fluid-mozn {
    max-width: 100%;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

@media (max-width: 1024px) {
    .container-fluid {
        flex-direction: column-reverse;
        width: auto;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }

    .logo-container {
        width: 100%;
        border-radius: 1rem; 
    }

    .info-container {
        width: 100%;
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .form-container {
        padding: 1.5rem .5rem;
    }

    .home-btn {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .img-fluid-mozn {
        max-width: 25%;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: large;
    }

    .form-desc, .continue-btn, .home-btn a {
        font-size: small;
    }
}

[data-bs-theme="dark"] {
    .bg-pj {
        background-color: #212529;
    }

    .continue-btn, .continue-btn:hover {
        background-color: white;
        color: #212529;
    }

    .info-container {
        box-shadow: 0 1rem 3rem rgba(255,255,255,.175) !important;
    }
}


#bd-theme{
    margin-right:-5px;
    margin-top: -105px;
    width: 60px;
    height: 40px;

}

