/*///////////////////////////////////////
///////////////////////////////////////// Core
///////////////////////////////////////*/
body {              
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--grey_light);    
    font-family: CenturyGothic, Arial, serif; letter-spacing: 0em !important; color: var(--text_color); letter-spacing: 0.05em;
    overflow-x: hidden;
    overflow-y: scroll;
}
@font-face {
    font-family: 'FightKick';
    src: url('../fonts/FightKickDemoRegular.woff2') format('woff2'),
            url('../fonts/FightKickDemoRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.shake {
    display:inline-block;
    -webkit-animation-name: shake;
    -webkit-animation-duration: 0.5s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes shake {
    0% { -webkit-transform: translate(2px, 1px)} 
    10% { -webkit-transform: translate(-1px, -2px)}
    20% { -webkit-transform: translate(-3px, 0px)}
    30% { -webkit-transform: translate(0px, 2px)}
    40% { -webkit-transform: translate(1px, -1px)}
    50% { -webkit-transform: translate(-1px, 2px)}
    60% { -webkit-transform: translate(-3px, 1px)}
    70% { -webkit-transform: translate(2px, 1px)}
    80% { -webkit-transform: translate(-1px, -1px)}
    90% { -webkit-transform: translate(2px, 2px)}
    100% { -webkit-transform: translate(1px, -2px)}
}
.formelem_text {
    all: unset;
    width: 300px; height: 50px;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
    border: solid 1px #000;
}
/*///////////////////////////////////////
///////////////////////////////////////// [END] Core
///////////////////////////////////////*/

/*///////////////////////////////////////
///////////////////////////////////////// Log
///////////////////////////////////////*/
#log {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    height: 100vh;
    margin-top: -100px;
}
#log_title {
    font-family: LeagueSpartan_ExtraBold, Arial, serif; font-size: 4em; letter-spacing: -0.05em; color: #000;
}

#log_logo {
    display: flex; flex-direction: column; align-items: center;
}
#log_logo_title {
    text-align: center;
}
#logo_title {
    font-family: 'FightKick', Arial, serif; font-size: 4em;
}
#logonum {
    font-family: 'Arial Black', serif; font-weight: bolder; font-size: 2.8em;
}
#log_logo_img {
    width: 200px;
}
#log_error {
    display: flex; justify-content: center; align-items: center;
    width: 300px; height: 50px;
    color: #f00;
}
#log_button {
    all: unset;
    text-align: center;
    width: 300px; height: 50px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}
#pass_forgottten {
    display: flex; justify-content: center; align-items: center;
    width: 300px; height: 50px;
    font-style: italic; color: #4295d7;
    cursor: pointer;
}
#pass_forgottten:hover {
    text-decoration: underline;
}
#reset_password_errors li.error {
    color: #f00;
}
.log_block {
    display: flex; justify-content: center;
}
/*///////////////////////////////////////
///////////////////////////////////////// [END] Log
///////////////////////////////////////*/