.span-margin{
    margin-right:125px!important;
}

.span-margin-large{
    margin-right:165px!important;
}

.image-container {
    max-width: 296px; /* 表示領域の幅を指定 */
    max-height: 296px; /* 表示領域の高さを指定 */
    overflow: hidden; /* 表示領域を超える部分を隠す */
    display: flex;     
    justify-content: center;
    align-items: center;
 }
 
.image-container img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain; /* 縦横比を維持しつつ、表示領域に収める */
}

.img_login{
    display: block;
    margin: 0 auto;
    border-style: none;
    width: 400px;
}

.qr_code_guide{
    width:350px;
    margin-left: 200px;
}

.margin-bottom{
    margin-bottom:0!important;
}

.error-message {
    color: #914108;
    font-size: 0.75rem;
}

@media screen and (max-width: 767.9px) {
    .image-container {
        max-width: 168px; /* 表示領域の幅を指定 */
        max-height: 168px; /* 表示領域の高さを指定 */
    }

    .span-margin{
        margin-right:30px!important;
    }
    
    .span-margin-large{
        margin-right:65px!important;
    }

    .img_login{
        width: 315px;
    }

    .qr_code_guide{
        width:300px;
        margin-left: 0px;
    }
}