@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
}
section .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
}
section .agac2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 100;
}
section .agac1{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 102;
}
section .bank{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 103;
}
section .bisiklet{
    position: absolute;
    scale: 0.65;
    top: 35%;
    animation: aninateBike 10s linear infinite;
    z-index: 101;
    
    
}
@keyframes aninateBike {
    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);
    }
}
.login{
    position: relative;
    z-index: 105;
    padding: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid #FFF;
    box-shadow: 0 25px 50px rgba(0 , 0, 0, 0.2);
    width: 430px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.login h2{
    position: relative;
    width: 100%;
    color: #691d1d;
    text-align: center;
    margin-bottom: 8px;
    font-size: 2.2em;
    font-weight: 600;
}
.login .inputBox{
    position: relative;
}
.login .inputBox input{
    position: relative;
    width: 100%;
    padding: 14px 20px;
    color: #691d1d;
    background: #FFF;
    outline: none;
    font-size: 1.2em;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}
.login .inputBox ::placeholder{
    color: #691d1d;
}
.login .inputBox #girisBtn{
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    background: #691d1d;
    color: #FFF;
    font-size: 1.2em;
    font-weight: 500;
    transition: 0.3s ease;
}
.login .inputBox #girisBtn:hover{
    background: #811f1f;
}
.login .grup{
    display: flex;
    justify-content: space-between;
}
.login .grup a{
    font-size: 1.2em;
    font-weight: 500;
    color: #691d1d;
    text-decoration: none;
}
.login .grup a:nth-child(2){
    text-decoration: underline;
}
.yapraklar{
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
    pointer-events: none;
}
.yapraklar .set{
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.yapraklar .set div{
    position: absolute;
    display: block;
}
.yapraklar .set div:nth-child(1){
    left: 20%;
    animation: animate 20s linear infinite;
}
.yapraklar .set div:nth-child(2){
    left: 50%;
    animation: animate 8s linear infinite;
}
.yapraklar .set div:nth-child(3){
    left: 20%;
    animation: animate 16s linear infinite;
}
.yapraklar .set div:nth-child(4){
    left: 75%;
    animation: animate 12s linear infinite;
}
.yapraklar .set div:nth-child(5){
    left: 10%;
    animation: animate 20s linear infinite;
}
.yapraklar .set div:nth-child(6){
    left: 85%;
    animation: animate 13s linear infinite;
}
.yapraklar .set div:nth-child(7){
    left: 16%;
    animation: animate 14s linear infinite;
}
.yapraklar .set div:nth-child(8){
    left: 65%;
    animation: animate 15s linear infinite;
}
@keyframes animate {
    0%{
        opacity: 0;
        top: -10%;
        transform: translateX(18px) rotate(0deg);
    }
    10%{
        opacity: 1;
    }
    20%{
        transform: translateX(-18px) rotate(45deg);
    }
    40%{
        transform: translateX(-18px) rotate(90deg);
    }
    60%{
        transform: translateX(18px) rotate(180deg);
    }
    80%{
        transform: translateX(-18px) rotate(45deg);
    }
    100%{
        top: 100%;
        transform: translateX(18px) rotate(225deg);
    }
    
}