html {
	height: 100%;
}

body {
	background: var(--background_2);
	color: #fff;
	font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important;
	overflow: hidden;
    background-image: url("../images/Backgrounds/dots.png");
    background-size: contain;
}

.cfg_login {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	user-select: none;
    margin-top: -50px;
}

.cfg_login_text {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 3px;
    color: var(--text);
}

.cfg_login_text span {
	font-weight: 100;
	color: var(--akzentfarbe);
}


.login_btn_v2 {
    display: block;
    position: relative;
    width: 275px;
    height: 45px;
    line-height: 45px;
    background: var(--background);
    border: 1px solid var(--border_light);
    color: var(--text);
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    transform: scale(.9);
}

.login_btn_v2 span {
    width: 80%;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    right: 0;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2);
}

.login_btn_v2 span:before {
    content: '';
    background: var(--border);
    width: 2px;
    height: 70%;
    position: absolute;
    top: 15%;
    left: -1px;
  }

.login_btn_v2 .steam_icon {
    width: 20%;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.login_btn_v2 .steam_icon i {
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.login_btn_v2 span,
.login_btn_v2 .steam_icon {
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}

.login_btn_v2 .steam_icon i {
    font-size: 25px;
    line-height: 45px;
}

.login_btn_v2:hover span {
  right: -80%;
  opacity: 0;
}

.login_btn_v2:hover .steam_icon {
  width: 100%;
}


.login_btn_v2:hover .steam_icon i {
  font-size: 35px;
}



.rememberMe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text_second);
    margin-top: 5px;
    cursor: pointer;
    opacity: .5;
}

.rememberMe input {
    accent-color: var(--akzentfarbe);
}

.rememberMe label {
    cursor: pointer;
}
















/* allow cookies */

.cookie_container {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    text-align: center;
    background: #353a43;
    border-radius: 3px;
}

.cookie_container .buttons {
    display: flex;
    text-align: center;
    margin: 50px auto auto 0;

}

.cookie_container .info {
    text-align: justify;
    color: white;
    margin-bottom: 25px;
}

.cookie_container a {
    color: #1887d2;
}

.cookie_container .buttons button {
    display: inline-block;
    text-align: center;
    width: 350px;
    height: 35px;
    border-radius: 3px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 17px;
    text-shadow: 0 0 2px black;
}

.cookie_container .buttons button:hover {
    filter: drop-shadow(0 5px 5px #252525);
}

.cookie_container .buttons .deny {
    background: #D23333;
    margin-right: auto;
    margin-left: 10px;
}

.cookie_container .buttons .accept {
    background: #1ac15d;
    margin-left: auto;
    margin-right: 10px;
}