@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
       /* Colors*/
    --green: #1ac15d;
    --red: #D23333;
    --blue: #1887d2;
    --yellow: #E3D52A;
    --orange: #CA8015;
    --purple: #A359F2;

    --akzentfarbe: rgb(52 108 157) ;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

/* CHRISTMAS */
.cfg_login_block_left_christmas {
    display: none;
}

html {
	height: 100%;
}

body {
    height: 100%;
    width: 100%;
	background: var(--_MainColor);
    overflow: hidden;
}

.fog_container {
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
	width: 100%;
	height: 100%;
    background: var(--ContentBG);
    background-image: url(https://cfgaming.de/images/dots.png);
    background-size: contain;
}

.animated_items {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    list-style: none;
}

.animated_items li {
    position: absolute;
    bottom: -150px;
    background: rgba(255, 255, 255, 0.2);
    animation: animated_items 25s linear infinite;
    width: 20px;
    aspect-ratio: 1;
}

@keyframes animated_items {
    from {
        transform: translateY(0) rotate(0);
        opacity: 1;
        border-radius: 0;
    }
    to {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.animated_items li:nth-child(1) {
    left: 85%;
    width: 150px;
    aspect-ratio: 1;
    animation-duration: 11s;
}
.animated_items li:nth-child(2) {
    left: 20%;
    width: 15px;
    aspect-ratio: 1;
    animation-delay: 2s;
    animation-duration: 35s;
}
.animated_items li:nth-child(3) {
    left: 50%;
    width: 30px;
    aspect-ratio: 1;
    animation-delay: 15s;
    animation-duration: 45s;
}
.animated_items li:nth-child(4) {
    left: 35%;
    width: 150px;
    aspect-ratio: 1;
    animation-delay: 7s;
}
.animated_items li:nth-child(5) {
    left: 75%;
    width: 110px;
    aspect-ratio: 1;
    animation-delay: 3s;
}
.animated_items li:nth-child(6) {
    left: 65%;
    width: 25px;
    aspect-ratio: 1;
}
.animated_items li:nth-child(7) {
    left: 40%;
    width: 60px;
    aspect-ratio: 1;
    animation-duration: 18s;
}
.animated_items li:nth-child(8) {
    left: 70%;
    width: 20px;
    aspect-ratio: 1;
    animation-duration: 4s;
}
.animated_items li:nth-child(9) {
    left: 10%;
    width: 20px;
    aspect-ratio: 1;
    animation-delay: 2s;
    animation-duration: 12s;
}
.animated_items li:nth-child(10) {
    left: 25%;
    width: 80px;
    aspect-ratio: 1;
}
.animated_items li:nth-child(11) {
    left: 10%;
    width: 150px;
    aspect-ratio: 1;
    animation-delay: 5s;
    animation-duration: 10s;
}


.cfg_login_form {
    height: 100%;
    width: 100%;
}

.cfg_login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.cfg_login_block {
	display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    height: 420px;
    width: auto;
    border-radius: 15px;
    box-shadow: var(--BoxShadow);
    border: 1px solid var(--borderGrey);
    margin-top: -150px;
    overflow: hidden;
    z-index: 1;
    animation: cfg_login_block .5s ease-in-out forwards;
    opacity: 0;
} 

@keyframes cfg_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;
    }
}

.cfg_login_block_right {
    position: relative;
    display: block;
    width: 0;
    border-right: 1px solid var(--borderGrey);
    height: auto;
    overflow: hidden;
    animation: cfg_login_block_right .5s ease forwards 0.5s;
    opacity: 0;
}

@keyframes cfg_login_block_right {
    from {
        width: 0px;
        opacity: 0;
    }
    to {
        width: 250px;
        opacity: 1;
    }
}

.cfg_login_block_right_bg {
    width: 100%;
    height: 100%;
    background:
    linear-gradient(135deg, var(--mainBG) 10px, var(--akzentfarbe) 11px, var(--akzentfarbe) 12px, transparent 12px, transparent 34px, var(--akzentfarbe) 34px, var(--akzentfarbe) 35px, transparent 35px),
    linear-gradient(225deg, var(--mainBG) 10px, var(--akzentfarbe) 11px, var(--akzentfarbe) 12px, transparent 12px, transparent 34px, var(--akzentfarbe) 34px, var(--akzentfarbe) 35px, transparent 35px)0 32px;
    background-color: var(--mainBG);
    background-size: 32px 64px;
    filter: blur(5px) brightness(110%);
}

.cfg_login_block_right_msg {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cfg_login_block_right_msg img {
    width: 200px;
    opacity: 0;
    animation: cfg_login_block_right_msg_img .3s ease-in forwards .9s;
}

@keyframes cfg_login_block_right_msg_img {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
	45% {
        transform: scale(1.05);
        opacity: .6;
    }
	80% {
        transform: scale(0.95);
        opacity: .6;
    }
	100% {
        transform: scale(1);
        opacity: .6;
    }
}


.cfg_login_block_left {
    display: flex;
    flex-direction: column;
	position: relative;
	background: var(--mainBG);
	width: 350px;
    height: auto;
    z-index: 2;
}

.cfg_login_logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: var(--mainBG);
    border-bottom: 1px solid var(--borderGrey);
    filter: brightness(95%);
    opacity: 0;
    animation: cfg_login_logo_box .5s ease .5s forwards;
}

@keyframes cfg_login_logo_box {
    0% {
        transform: translateY(-125px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.cfg_login_logo_box img {
	display: none;

}

.logoMSG {
    font-size: 45px;
    font-weight: 700;
    color: var(--_textColor);
}






.cfg_login_input_box {
    display: flex;
    flex-direction: column;
	width: 100%;
    padding: 0 25px;
}

.cfg_login_input_text {
	width: 100%;
	color: var(--text_color);
	font-size: 15px;
    font-weight: 500;
    margin: 20px 0 5px 0;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--ContentBG) inset !important;
    -webkit-text-fill-color: var(--text_color) !important;
    filter: brightness(110%);
}

.cfg_login_input_box input {
	line-height: 25px;
	width: 100%;
	background: var(--ContentBG);
    font-size: 16px;
	border: 5px solid var(--ContentBG);
	outline: 2px solid #2f3842;
	border-radius: 5px;
	color: var(--text_color);
    padding: 0 0 0 60px;
	box-shadow:  var(--BoxShadow);
    filter: brightness(110%);
    caret-color: var(--text_color);
}

.cfg_login_input_box input:focus {
	outline: 2px solid var(--akzentfarbe);
}

.cfg_login_input_box span i {
	position: absolute;
	color: var(--text_color);
	font-size: 18px;
    line-height: 35px;
	padding: 0 15px;
    z-index: 1;
}

.cfg_login_input_box span i::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    height: 60%;
    width: 1px;
    background: var(--text_color);
    opacity: .5;
}


.cfg_login_input_box button {
	height: 40px;
	width: 100%;
	background: var(--akzentfarbe);
	border: none;
	outline: none;
	border-radius: 5px;
	color: #c1c1c1;
    font-weight: 600;
	margin-top: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 15px;
}

.cfg_login_input_box button:hover {
	filter: brightness(80%);
} 





.cfg_login_input_box_footer {
    width: 100%;
    text-align: center;
	font-size: 11px;
	color: var(--text_color);
	margin-top: 35px;
}

.cfg_login_input_box_footer span, 
.cfg_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;
}


.login_slide_in {
	opacity: 0;
	animation: login_slide_in .7s ease .5s forwards;
}

.login_slide_in:nth-child(2) { animation-delay: .6s; }
.login_slide_in:nth-child(3) { animation-delay: .7s; }
.login_slide_in:nth-child(4) { animation-delay: .8s; }
.login_slide_in:nth-child(5) { animation-delay: .9s; }
.login_slide_in:nth-child(6) { animation-delay: 1s; }
.login_slide_in:nth-child(7) { animation-delay: 1.1s; }
.login_slide_in:nth-child(8) { animation-delay: 1.2s; }
.login_slide_in:nth-child(9) { animation-delay: 1.3s; }

@keyframes login_slide_in {
	0% {
		opacity: 0;
		margin-left: -30px;
	}
	100% {
		opacity: 1;
		margin-left: 0px;
	}
}


@media only screen and (max-width: 1650px) {
    .animated_items li:nth-child(1) {width: 25px;}
    .animated_items li:nth-child(2) {width: 40px;}
    .animated_items li:nth-child(3) {width: 15px;}
    .animated_items li:nth-child(4) {width: 10px;}
    .animated_items li:nth-child(5) {width: 35px;}
    .animated_items li:nth-child(6) {width: 15px;}
    .animated_items li:nth-child(7) {width: 20px;}
    .animated_items li:nth-child(8) {width: 30px;}
    .animated_items li:nth-child(9) {width: 45px;}
    .animated_items li:nth-child(10) {width: 15px;}
    .animated_items li:nth-child(11) {width: 25px;}
}



@media only screen and (max-width: 610px) {

    .cfg_login_block {
        width: 80%;
        animation: none;
        opacity: 1;
    }

    

    .cfg_login_logo_box { animation-delay: .0s; }
    .login_slide_in:nth-child(1) { animation-delay: .1s; }
    .login_slide_in:nth-child(2) { animation-delay: .2s; }
    .login_slide_in:nth-child(3) { animation-delay: .3s; }
    .login_slide_in:nth-child(4) { animation-delay: .4s; }
    .login_slide_in:nth-child(5) { animation-delay: .5s; }
    .login_slide_in:nth-child(6) { animation-delay: .6s; }
    .login_slide_in:nth-child(7) { animation-delay: .7s; }

    .cfg_login_block_right {
        display: none;
    }

    .cfg_login_block_left {
        width: 100%;
    }

    .cfg_login_input_box {
        padding: 0 20px;
    }
}



