.main-container{
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}
.login-box{
    margin-right: 50px;
    width: 30%;
}
.login-box-tt{
    text-align: center;
}
.login-box-sub-tt{
    text-align: center;
    color: #a29d93;
}
.main-register-btn{
    color: #FF6400;
    cursor: pointer;
}
.login-form-box{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    background-color: white;
}
.register-form-box{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    background-color: white;
    width: 40%;
    margin: 0 auto;
}
.btn-login{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    background: #FFBB35;
    border-color: #FFBB35;
    transition: all .3s;
}

.btn-login:hover{
    background-color: #ffdc98;
    border-color: #ffdc98;
}
.btn-login:active{
    background-color: #b17600 !important;
    border-color: #b17600 !important;
}
.show-message-error{
    padding: 10px;
    background: #ff5757;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
}
.home-container{
    display: flex;
    justify-content: center;
    margin-top: 10%;
}
.update-block-log {
    width: 40%;
    font-size: 12px;
    border: 5px solid black;
    padding: 0px;
    height: 450px;
    overflow: scroll;
    resize: both;
    background: #ffd73e33;
    border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 5s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23FBF9E8' /%3E%3Cstop offset='100%25' stop-color='%23FFBB35' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='square' stroke='url(%23g)' stroke-width='3' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
    border-radius: 10px;
    font-family: monospace;
}

#page{
    background: #FBF9E8;
}
.update-block-log {
    font-family: monospace;
}
.update-block-log p {
    margin: 0; /* Remove default margin */
    padding: 2px;
    color: #bf9c5c;
}
.update-block-log p:nth-child(odd) {
    background-color: #fbf7d2
}
.update-block-log p:nth-child(even) {
    background-color: #ffe0a2;
}
.update-version-box{
    border-bottom: 5px solid #ffbf5f;
}
.update-version-box:last-child{
    border-bottom: 0;
}
.update-version-box .bold{
    font-weight: bold;
    color: orange;
}
.update-version-box .semi-bold{
    font-weight: bold;
    color: #825400;
}
.btn-logout{
    width: 100%;
    margin-top: 20px;
}
.register-finish-box{
    width: 40%;
    margin: 0 auto;
}


@media (max-width: 550px){
    .login-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 15%);
        width: 100%;
        padding: 0 20px;
    }
    .update-block-log{
        display: none;
    }
    .register-form-box{
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
        padding: 20px;
        margin-top: 40px;
        border-radius: 10px;
        background-color: white;
        width: 100%;
    }
    .register-finish-box{
        width: 100%;
        margin: 0 auto;
    }
}