@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,200;10..48,300;10..48,400;10..48,500;10..48,600;10..48,700;10..48,800&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;;
}

.box{
    background-color: #1c1d1e;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bubble{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    min-width: 750px;
    user-select: none;
}
/* .bubble .icon{
    font-size: 60px;
    color: #4578E2;
} */
.bubble .logo{
    width: 300px;
    padding-bottom: 20px;
    pointer-events: none;
}

.login-sep{
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
}
.login-sep .text{
    background-color: #464646;
    color: white;
    padding: 0 40px;
    z-index: 10;
    width: fit-content;
    font-size: 13px;
}

.login-sep::before{
    content: "";
    display: block;
    background-color: lightgrey;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 0;
}

.right-side{
    padding: 60px !important;
    background-color: #464646;
}

.image-area{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    background-color: #0b39549e;
}

.error{
    color: red;
    font-size: small;
}

input, select{
    background-color: #2c2c2c !important;
    color: white !important;
    border-radius: 0 !important;
    border: none !important;
}

@media only screen and (max-width: 990px) {
    .bubble{
        min-width: 100vw;
        border-radius: 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .right-side{
        padding: 30px !important;
    }
}