    * {
      margin: 0;
      padding: 0;
    }
body {
    background-color: #fff !important;
    font-family: 'Korolev' !important
}
@font-face {
    font-family: 'korolev-bold';
    src: url('../dist/fonts/font_login/korolev-bold.woff') format('woff');
}
@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-MediumItalic.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-Light.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-Medium.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-Thin.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('Korolev-LightItalic.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-Heavy.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-HeavyItalic.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Korolev';
    src: url('../dist/fonts/font_login/Korolev-Bold.woff2') format('woff2'), url('../dist/fonts/font_login/Korolev-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}







    .hero {
      height: 100vh;
      width: 100%;
      /* background-image: url(https://images.unsplash.com/photo-1517639493569-5666a7b2f494?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80); */
      background-size: cover;
      background-position: center;
      position: relative;
      overflow-x: hidden;
      position: absolute;
      bottom: 0px;
      /* display: flex;
      align-items: center;
      justify-content: center; */
    }
.login_screen form {
    width: 100%
}

.city {
    height: 300px;
    background-position: bottom;
    width: 500%;
    background-image: url('../assets/images/login_background.jpg');
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    display: block;
    z-index: 999;
    background-repeat: repeat;
    animation: city 50s linear infinite;
}


    @keyframes moveLeft {
      100% {
        left: 100px;
      }
      0% {
        left: 0px;
      }
    }

    @keyframes city {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-100% + 1400px));
      }
    }
    .wheel {
      left: 50%;
      bottom: 52px;
      transform: translateX(-50%);
      position: absolute;
      z-index: 2;
    }
    .wheel img {
      width: 55px;
      height: 55px;
      animation: wheel 1s linear infinite;
    }
    .back-wheel {
      left: -124px;
      position: absolute;
    }
    .front-wheel {
      left: 65px;
      position: absolute;
    }
    @keyframes wheel {
      100% {
        transform: rotate(360deg);
      }
    }

    .cloudcontent {
      z-index: 100;
    }
    .cloud img {
      width: 100%;
      left: 0;
      top: 0;
      position: absolute;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      pointer-events: none;
      z-index: -1;
    }
    @-webkit-keyframes animCloud {
      from {
        -webkit-transform: translateX(100%);
      }
      to {
        -webkit-transform: translateX(-100%);
      }
    }
    @-moz-keyframes animCloud {
      from {
        -moz-transform: translateX(100%);
      }
      to {
        -moz-transform: translateX(-100%);
      }
    }
    @keyframes animCloud {
      from {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
      }
      to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
      }
    }
    .cloud1 {
      -webkit-animation: animCloud 20s infinite linear;
      -moz-animation: animCloud 20s infinite linear;
      animation: animCloud 20s infinite linear;
    }
    .cloud2 {
      -webkit-animation: animCloud 40s infinite linear;
      -moz-animation: animCloud 40s infinite linear;
      animation: animCloud 40s infinite linear;
    }
    .cloud3 {
      -webkit-animation: animCloud 60s infinite linear;
      -moz-animation: animCloud 60s infinite linear;
      animation: animCloud 60s infinite linear;
    }
    .cloud4 {
      -webkit-animation: animCloud 80s infinite linear;
      -moz-animation: animCloud 80s infinite linear;
      animation: animCloud 80s infinite linear;
    }
    .logo_width {
      width: 150px;
      margin: auto;
    }
    .logo_width img {
      max-width: 100%;
    }
.form_section1 {
    width: 560px;
    margin: auto;
    text-align: center;
    /* padding-top: 80px; */
    position: absolute;
    z-index: 99999999999999;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -20%);
    /* background: #fff; */
    padding: 30px 30px;
    /* border: 1px solid #b7b0b0; */
    border-radius: 20px;
    /* box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px; */

}
    .login_text {
      text-align: left;
    }
    .login_text h3 {
      font-size: 30px;
      font-weight: 700;
      margin: 0px 0px 20px;
      font-family: "Korolev" !important;
    }
    .input_box_login input {
      width: 100%;
      border-radius: 9px;
      outline: none;
      border: 1px solid #d3cece;
      padding: 16px 14px;
      margin-bottom: 18px;
      font-size: 15px;
      height: auto;
      font-family: "Korolev";
    }
    .input_box_login select{
         width: 100%;
      border-radius: 9px;
      outline: none;
      border: 1px solid #d3cece;
      padding: 16px 14px;
      margin-bottom: 18px;
      font-size: 15px;
      height: auto;
      font-family: "Korolev";
      appearance: none;
    }
    .select_appear

    .select_appear select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Optional: add any additional styling */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 100%;
    max-width: 300px;
  }

  /* Add custom down arrow */
  .select_appear select {
    background-image: url('https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/down4-512.png'); /* Change the URL to your arrow image */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Adjust as needed */
    background-size: 20px; /* Adjust as needed */
  }
    .login_btn button {
      width: 100%;
      background-color: #ffd550;
      font-size: 16px;
      font-weight: 700;
      padding: 11px;
      margin: 20px 0px 0px;
      font-family: "Korolev" !important;
    }
    .infotext p {
      font-size: 15px;
      color: #afa2a2;
      font-family: "Korolev" !important;
    }
    .forget_text p {
      font-size: 16px;
      font-weight: 600;
      font-family: "Korolev" !important;
      cursor: pointer;
    }
    .rembr_text label label {
      font-size: 13px;
    }

    .input_box_login {
      position: relative;
    }
    .password_icon {
      position: absolute;
      top: 15px;
      right: 15px;
      cursor: pointer;
    }
    .back_sign p {
      font-weight: 400;
      font-family: "Korolev" !important;
    }
    .sign_upscreen{
      display: none;
    }
    .inner_label{
      font-family: "korolev" !important;
    }
    .custome_checkbox label {
    display: flex;
  }
  .custome_checkbox label .inner_label {
    display: inline;
    font-size: 14px;
    margin-left: 10px;
  }
  .custome_checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #726f6f;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
  }
  .custome_checkbox input[type="checkbox"]:checked {
    background-color: #000;
    border-color: #000;
  }
  .custome_checkbox input[type="checkbox"]:checked::after {
    content: "\2713";
    font-size: 12px;
    color: #fff;
    position: relative;
    left: 3px;
    top: -5px;
  }


.Employee_btn {
    width: 100%;
    padding: 10px !important;
    font-size: 16px !important;
    font-weight:600 !important;
}


.btn.btn-primary {
    background-color: #ffdc4a !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #ffdc4a;
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, opacity 0.5s;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 0;
    height: 0;
    opacity: 0;
    background-color: #000;
}

.btn-primary span {
    position: relative;
    color: #000;
    z-index: 1;
}

.btn-primary {
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, background-color 0.3s;
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
    .form_section1 {
        width: 100%;
      }
      .block_changes::after {
        display: none;
      }
      .block_changes::before {
        display: none;
      }
      .login_text h3 {
        font-size: 24px;
      }
    }