@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../img/jatra.png') no-repeat center center/cover;
    margin: 0;
}



.jat {
    
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: aqua;
    z-index: 1000;
}



.jat h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    color: #018e3c;
   -webkit-text-stroke: 1px white;
   text-shadow: 50px;
}



.jat p {
    font-size: 16px;
    color: #fff;
    margin: 5px 0 0;
}



.wrap {
    margin-top: 120px;
    width: 90%;
    max-width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
}




.wrap h1 {
    font-size: 36px;
    text-align: center;
}



.wrap .input {

    position: relative;
    width: 100%;
    height: 30px;
    margin: 30px  0;
}



.input input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;

    border: 2px solid rgba(255,255,255,.2);
    border-radius: 40px;
    color: #fff;
    padding: 20px 45px 20px 20px;
    font-size: 1rem;
}



#name{
    display: flex;
}



.input input::placeholder {
    color: #fff;
}




.input i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}




.wrap .remember {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}



.remember label input {
    accent-color: #fff;
    margin-right: 3px;
}




.remember a {
    color: #fff;
    text-decoration: none;
}




.remember a:hover {
    text-decoration: underline;
}




.wrap .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}



.wrap .btn:hover {
    background: #018e3c;
    color: #000;
}





.wrap .reg {
    font-size: 20px;
    text-align: center;
    margin: 20px 0 15px;
}




.reg p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}




.reg p a:hover {
    text-decoration: underline;
}





@media (max-width: 768px) {
    .jat h1 {
        font-size: 2rem;
    }
    .jat p {
        font-size: 14px;
    }
    .wrap {
        padding: 25px 20px;
        margin-top: calc(100px + 5vh);
    }
}



@media (max-width: 480px) {
    .jat h1 {
        font-size: 1.6rem;
    }
    .jat p {
        font-size: 12px;
    }
    .wrap {
        margin-top: 90px;
        padding: 20px 15px;
    }
}
