@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');
* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Poppins', sans-serif;
}
.leaves {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

img.girl {
    position: absolute;
    top: 20%;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
    animation: animateGirl 15s linear infinite;
    scale: 0.65;
    overflow: hidden;
}
body.login{
    overflow: hidden;
}
img.trees {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@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);}
    }
.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(28px) rotate(180deg);} 
    80%{ transform: translateX(-20px) rotate(45deg); } 
    100% { top: 110%; transform: translateX(28px) rotate(225deg);}
 }
 .leaves .set {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

.leaves .set div {
    position: absolute;
    display: block;
}
form#loginform {
    padding: 60px;
    width: 500px;
    background: rgb(0 115 170 / 24%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: none;
}

div#login {
    max-width: 500px;
    min-width: 500px;
}

form#loginform h3.title {
    font-size: 2.5em;
    text-align: center;
    color: #90281f;
    margin-bottom: 10px;
}
form#loginform label {
    color: #fff;
}

form#loginform input {
    border: none;
    font-size: 14px;
    font-weight: bold;
}

form#loginform input#wp-submit {
    width: 100%;
    background: #ff4f00;
    margin-top: 10px;
}

.language-switcher {
    display: none;
}

div#login p#nav,p#backtoblog  {
    margin-top: 10px !important;
    text-align: center;
}

div#login p#nav a, p#backtoblog a {
    color: #fff !important;
}
.info_dev {
    display: block;
    margin-top: 79px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.info_dev a {
    color: #ff4f00;
    font-weight: bold;
}
.login h1 a {
    background-image: url(/wp-content/plugins/theme-option/assets/image/avatar.jpg);
    border-radius: 50%;
}
.login form.shake {
    animation: initial;
    animation-iteration-count: 3;
    transform: initial;
}
body{
    height: 100vh;
    background-color: #f2f2f2;
    background-image: url(/wp-content/plugins/theme-option/assets/image/background.png);
    background-size: cover;
}
.leaves-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
  
  /* Style for the individual leaves */
  .leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #9ac23c00;
    border-radius: 50%;
    animation: falling 8s ease-in-out infinite;
  }

  /* Keyframe animation for the falling leaves */
  @keyframes falling {
    0% {
      transform: translateY(-10%);
    }
    100% {
      transform: translateY(3220%);
    }
  }

  /* Position each leaf randomly within the container */
  .leaf:nth-child(1) {
    left: 5%;
    top: -5%;
    animation-delay: 0.5s;
  }
  .leaf:nth-child(2) {
    left: 25%;
    top: -10%;
    animation-delay: 2s;
  }
  .leaf:nth-child(3) {
    left: 45%;
    top: -15%;
    animation-delay: 3.5s;
  }
  .leaf:nth-child(4) {
    left: 65%;
    top: -20%;
    animation-delay: 1s;
  }
  .leaf:nth-child(5) {
    left: 85%;
    top: -25%;
    animation-delay: 2.5s;
  }
  .leaf:nth-child(6) {
    left: 95%;
    top: -15%;
    animation-delay: 2.5s;
  }

  .leaf:nth-child(7) {
    left: 55%;
    top: -15%;
    animation-delay: 1.5s;
  }

  .leaf:nth-child(8) {
    left: 20%;
    top: -15%;
    animation-delay: 1.0s;
  }
@media (max-width: 1023px){
    div#login {
        min-width: 100%;
        position: relative;
        height: 100%;
        overflow: hidden;
    }
    form#loginform {
        margin: 0 auto;
    }
    img.girl {
        top: 30%;
    }
}
@media screen and (max-width: 549px){
    form#loginform {
        max-width: 379px !important;
    margin: 0 auto;
    padding: 20px;
    }
    div#login {
        max-width: 100%;
        min-width: 100%;
    }
    
    body.login {
        background: #000;
    }
    img.girl {
        scale: .4;
    }
}
div#login_error {
    display: none;
}