body {
    background: black;
    color: white;
    font-family: 'Kanit';
}
.-item-box {
    color: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
    border: 1px double transparent;
    background-image: var(--linearbackground);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 15px;
    padding: 5px;
}
/*--logo image on header--*/
#header,.announce-running {
    display: none;
}
#img-navbar-logo-login {
    width: auto;
    height: 80px;
}
#container-login-parent {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('/assets/system-image/login/login-wallpaper.png');
}
#container-login-parent::before{
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(75%);
    z-index: 0;
}
#container-login-parent > * {
  position: relative;
  z-index: 1;
}
#container-login-form {
    margin: auto;
    max-width: 330px;
}
#container-login-form > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
#login-title {
    font-size: 25px;
    margin-bottom: 25px;
}
#form-login {
    width: 90%;
    height: 400px;
    margin: auto;
}
.form-text {
    color: #FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-text > label , .form-text > input {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
}
.form-text > input {
    width: 100%;
    appearance: none;
    outline: none;
    color: #FFFFFF;
    box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
    border: 1px double transparent;
    background-image: var(--linearbackground);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 10px;
    height: 2.5rem;
    
}
.form-text > label , #btnLogin {
    margin-top: 15px;
}
.form-text > label {
    margin-right: auto;
}
.form-switch {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 0;
    margin-top: 15px;
    font-size: 15px;
    font-weight: bold;
}
.form-switch > label {
    padding-left: 10px;
}
.form-contact {
    color: #FFFFFF;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-contact > button {
    width: 49.5%;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    appearance: none;
    outline: none;
    color: #FFFFFF;
    box-shadow: 0px 0px 2px 0px var(--box-shadow-color);
    border: 1px double transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 10px;
    height: 2.5rem;
}
.form-contact > button > img {
    width: 30px;
}
#btnAddLine {
    background-color: #2aa42a;
}
#btnAddTelegram {
    background-color: #0781be;
}

#btnLogin {
    color: #000000;
    appearance: none;
    outline: none;
    font-weight: bold;
    font-size: 15px;
    width: 100%;
    border: 1px double transparent;
    background-image: var(--linearbackgroundgold);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 10px;
    height: 2.5rem;
}

/*--footer--*/

#footer {
    display: none;
}


input {
    text-align: center;
    text-align: -webkit-center;
}


/*-- Dectect if mobile --*/

@media screen and (max-width: 1000px) {
    
    #container {
        width: 90%;
        padding: 0px;
        margin: auto;
        margin-top: 10px;
    }
}


