*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Poppins",sans-serif;
}

/* SECTION */
section{
position:relative;
display:flex;
justify-content:center;
align-items:center;
width:100%;
height:100vh;
overflow:hidden;
}

/* Background */
section .bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
pointer-events:none;
}

/* Trees */
section .trees{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:100;
pointer-events:none;
}

/* Girl animation */
section .girl{
position:absolute;
scale:.65;
pointer-events:none;
animation:animateGirl 10s linear infinite;
}

@keyframes animateGirl{
0%{transform:translateX(calc(100% + 100vw))}
50%{transform:translateX(calc(-100% - 100vw))}
50.01%{transform:translateX(calc(-100% - 100vw)) rotateY(180deg)}
100%{transform:translateX(calc(100% + 100vw)) rotateY(180deg)}
}

/* GLASS CARD */
.login{
position:relative;
padding:60px;
background:rgba(255,255,255,.25);
backdrop-filter:blur(15px);
border:1px solid #fff;
border-bottom:1px solid rgba(255,255,255,.5);
border-right:1px solid rgba(255,255,255,.5);
border-radius:20px;
width:500px;
display:flex;
flex-direction:column;
gap:25px;
box-shadow:0 25px 50px rgba(0,0,0,.15);
z-index:200;
}

/* Title */
.login h2{
text-align:center;
font-size:2.5em;
font-weight:600;
color:#8f2c24;
}

/* Subtitle */
.login p{
text-align:center;
color:#8f2c24;
font-size:18px;
}

/* Countdown */
.countdown{
display:flex;
justify-content:center;
gap:20px;
}

.countdown div{
background:#fff;
padding:15px 20px;
border-radius:10px;
text-align:center;
color:#8f2c24;
min-width:70px;
}

.countdown h3{
font-size:26px;
}

/* Leaves animation */
.leaves{
position:absolute;
width:100%;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
z-index:1;
pointer-events:none;
}

.leaves .set{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
}

.leaves .set div{
position:absolute;
display:block;
}

.leaves .set div:nth-child(1){left:20%;animation:animate 20s linear infinite}
.leaves .set div:nth-child(2){left:50%;animation:animate 14s linear infinite}
.leaves .set div:nth-child(3){left:70%;animation:animate 12s linear infinite}
.leaves .set div:nth-child(4){left:5%;animation:animate 15s linear infinite}
.leaves .set div:nth-child(5){left:85%;animation:animate 18s linear infinite}
.leaves .set div:nth-child(6){left:90%;animation:animate 12s linear infinite}
.leaves .set div:nth-child(7){left:15%;animation:animate 14s linear infinite}
.leaves .set div:nth-child(8){left:60%;animation:animate 15s linear infinite}

@keyframes animate{
0%{opacity:0;top:-10%;transform:translateX(20px) rotate(0deg)}
10%{opacity:1}
20%{transform:translateX(-20px) rotate(45deg)}
40%{transform:translateX(-20px) rotate(90deg)}
60%{transform:translateX(20px) rotate(180deg)}
80%{transform:translateX(-20px) rotate(45deg)}
100%{top:110%;transform:translateX(20px) rotate(225deg)}
}

/* MOBILE */
@media(max-width:768px){

.login{
width:90%;
padding:35px;
}

.login h2{
font-size:2em;
}

.countdown{
gap:10px;
}

.countdown div{
padding:10px;
min-width:60px;
}

.countdown h3{
font-size:20px;
}

}