
body {
    min-height: 100vh;
    background: linear-gradient(107.56deg, #1760f1 0%, #002099 100%);
    background-color:#002099;
    background-image: url(img/bgg.webp);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-position: bottom;
    text-align:center;
}
.home-wrap {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    text-align: center;
}

.home-wrap .logo-wrap {
    margin-bottom: 30px;
}
.logo-wrap img {
    transition:.5s;
}

.logo-wrap:hover img {
    transform: scale(1.1);
}
.home-wrap h1 {
    color: #fff;
    font-weight: 600;
    font-size:60px;
    margin-bottom: 30px;
    line-height: 1.3;
    margin-top: 180px;
}
.track-form {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.10);
    border: 1px solid #fff;
    border-radius: 50px;
    overflow: hidden;
}
.track-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    outline: none;
    width: 75%;
}
.track-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.track-form button {
    background: #182799;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 16px 36px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
    letter-spacing: 1px;
}
.track-form button:hover {
    background: rgba(255,255,255,0.28);
}
.error-alert {
    max-width: 560px;
    margin: 20px auto 0;
    background: rgba(255,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 500;
}
button.wk_search_btn img {
    width: 15px;
    margin-left: 5px;
    filter: brightness(20);
    transition:.5s;
       animation: slideRight 1s ease-in-out infinite alternate;
}


button.wk_search_btn:hover img {
    transform:translateX(10px);
}
@media(max-width:767px){

.track-form button {  
    padding: 11px 12px;
    font-size:14px;
     
}
.home-wrap h1 {
    
    font-size: 29px;
  
}
}
@keyframes slideRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(12px);
  }
}
