.login_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -20px;
}
.login_container_inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}
.login_container_inner .left{
    width: 70%;
}
.login_container_inner .left img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    height: 110vh;
}
.login_container_inner .right{
    width: 30%;
    padding: 60px;
    margin-top: 40px;
}


.logos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}
.logos_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}
.logos_inner img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: contain;
    max-width: 150px;
    height: 50px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1350px) {
    .logos_inner img{
        max-width: 48%;
    }
    .login_container_inner .right{
        padding: 20px;
    }
}
@media screen and (max-width: 970px) {
    .logos_inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .logos_inner img{
        height: 100px;
        max-width: 200px;
    }
}


@media screen and (max-width: 750px) {
    .login_container_inner{
        flex-direction: column;
    }
    .login_container_inner .left{
        width: 100%;
    }
    .login_container_inner .right{
        width: 100%;
        padding: 20px;
    }
    .login_container_inner .left img{
        height: 300px;
    }
    .logos{
        display: none !important;
    }
  }

  .if_checked_room{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
    height: 40px;
  }
  .if_checked_room i{
    font-size: 25px;
    color: red;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .if_checked_room p{
    margin: 0px;
    padding-right: 10px;
  }

  .if_non_checked_room{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
    height: 40px;
  }
  .if_non_checked_room i{
    font-size: 25px;
    color: #5DD431;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .if_non_checked_room p{
    margin: 0px;
    padding-right: 10px;
  }