html {
	height: 100%;
}

body {
    background: var(--BG);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


.login_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_panel {
    background: var(--BoxBG);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--BoxShadow);
    text-align: center;
    width: 400px;
    animation: login_block .5s ease-in-out forwards;
    opacity: 0;
}

@keyframes login_block {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
	45% {
        transform: scale(1.05);
        opacity: 1;
    }
	80% {
        transform: scale(0.95);
        opacity: 1;
    }
	100% {
        transform: scale(1);
        opacity: 1;
    }
}

h2 {
    color: white;
    margin-bottom: 10px;
}

p {
    font-size: 12px;
    color: #ccc;
}

a {
    color: #1887d2;
    text-decoration: none;
}

.db_error {
    width: 100%;
    height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #f94c4c;
    padding: 5px;
}

.discord_button {
    position: relative;
    background: var(--discord);
    width: 300px;
    margin-top: 5px;
}

.discord_button img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    opacity: 0;
    transition: all 0.5s ease;
}

.discord_button span {
    opacity: 1;
    transition: all 0.5s ease;
}

.discord_button:hover img {
    opacity: 1;
    top: 50%;
}

.discord_button:hover span {
    opacity: 0;
}

.disclaimer {
    font-size: 12px;
}


.login_input_box_footer {
    width: 100%;
    text-align: center;
	font-size: 11px;
	color: var(--TextColor);
	margin-top: 45px;
}

.login_input_box_footer span, 
.login_input_box_footer i {
	font-weight: 500;
}

.link_box a {
    color: var(--akzentfarbe);
    text-decoration: none;
    filter: brightness(110%);
    margin: 0 5px;
}

.link_box a:hover {
    filter: brightness(120%);
}

.link_box a::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 2px;
    width: 2px;
    height: 12px;
    border-right: 2px solid var(--text_color);
    opacity: .5;
}

.link_box a:last-child::before {
    content: "";
    display: none;
}