@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #E5E4E2;
    font-family: 'Montserrat', sans-serif;
}


.header {
    height: 50px;
    width: 100%;
    /* background-color: green; */
    display: flex;
}

.logo {
    height: 50px;
    width: 200px;
    /* background-color: red; */
    position: relative;
    left: 40px;
    overflow: hidden;
    top: 5px;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.navigations {
    height: 50px;
    width: 300px;
    /* background-color: blue; */
    position: relative;
    left: 80px;
    display: flex;
}

.navigations ul {
    display: flex;
    gap: 40px;
    font-size: 20px;
}

.navigations ul li {
    list-style: none;
    text-decoration: none;
}


.navigations ul a {
    text-decoration: none;
    color: black;
}


.enter {
    height: 50px;
    width: 500px;
    /* background-color: yellow; */
    display: flex;
    position: absolute;
    right: 20px;
}

.privacy-policy {
    height: 50px;
    width: 120px;
    /* background-color: purple; */
    text-align: center;
}

.privacy-policy a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    position: relative;
    top: 20px;
}

.help {
    height: 50px;
    width: 100px;
    /* background-color: grey; */
    text-align: center;
}

.help a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    position: relative;
    top: 20px;
}

.login {
    height: 50px;
    width: 120px;
    /* background-color: blue; */
    text-align: center;
}

.login a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    position: relative;
    top: 20px;
}

.register {
    width: 150px;
    border: none;
    border-radius: 10px;
    background-color: rgb(39, 102, 39);
    font-size: 18px;
    color: white;
}



.main {
    height: 400px;
    width: 100%;
    /* background-color: green; */
    justify-content: center;
    align-items: center;
    display: block;
}

.main-content {
    height: 150px;
    width: 900px;
    /* background-color: blue; */
    position: relative;
    left: 200px;
    text-align: center;
    top: 40px;
}

.main-content h1 {
    font-size: 50px;
    font-weight: 900;
    color: #298e29;
}

.heading {
    height: 60px;
    width: 700px;
    font-size: 24px;
    text-align: center;
    position: relative;
    left: 50px;
    bottom: 30px;

}

.fade-in-p {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s; /* delay after h1 animation */
    color: #444; /* subtle color for modern look */
    filter: blur(2px);
  animation: fadeInUp 1s ease forwards;
  }
  
  /* Keyframe for fade-in-up */
  @keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
  }

.main p {
    font-weight: 400;
    width: 800px;
}

.typewriter{
    background: linear-gradient(
    270deg,
    #ff5f6d,
    #ffc371,
    #47cacc,
    #8e2de2);

    background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 3) Initial state for fade+slide */
  opacity: 0;
  transform: translateY(20px);

  /* 4) Animations: fade‑slide in once, gradient shift forever */
  animation:
    fadeSlideIn 1s ease-out forwards,
    gradientShift 8s ease infinite;
  animation-delay: 0.4s, 0.4s;

}

@keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Looping Gradient Shift */
  @keyframes gradientShift {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
  }
  




.get {
    height: 60px;
    width: 350px;
    position: relative;
    left: 450px;
    top: 220px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(39, 102, 39);
    color: white;
}

.blur {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    justify-content: center;
    display: none;
}


.blur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(151, 146, 146, 0.829);
    filter: blur(150px);
    z-index: 1;
}



.register-container {
    width: 400px;
    height: 400px;
    position: relative;
    filter: none;
    z-index: 99;
    left: 450px;
    top: 100px;
    border-radius: 20px;
    background-color: white;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.input-section {
    height: 40px;
    width: 300px;
    background-color: grey;
    position: relative;
    left: 50px;
    border-radius: 10px;
    display: flex;
    background-color: #E5E4E2;
    border: 1px solid grey;
    margin-top: 20px;
}

.icon {
    height: 40px;
    width: 50px;
    /* background-color: blue; */
    text-align: center;
}

.icon i {
    position: relative;
    top: 10px;
    font-size: 20px;

}

.input-section input {
    width: 220px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.input-section input:focus {
    outline: none;
}


.check {
    height: 40px;
    width: 300px;
    /* background-color: grey; */
    position: relative;
    top: 10px;
    left: 50px;
    display: flex;
}



.check-bx {
    height: 40px;
    width: 70px;
    /* background-color: #298e29; */
}


.check-bx input {
    height: 30px;
    width: 20px;
}

.check p {
    position: relative;
    bottom: 15px;
    left: 0px;
}


.register-btn {
    height: 50px;
    width: 300px;
    position: relative;
    top: 25px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    background-color: #298e29;
    color: white;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    top: 10px;
    font-size: 20px;
    border-radius: 100%;
    width: 30px;
    width: 30px;
    text-align: center;
    border: none;
}

.close i {
    position: relative;
    left: -2px;
    top: 1px;

}


.close:focus {
    outline: noe;
}



.blur2 {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    justify-content: center;
    display: none;
}


.blur2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(151, 146, 146, 0.829);
    filter: blur(150px);
    z-index: 1;
}



.register-container {
    width: 400px;
    height: 400px;
    position: relative;
    filter: none;
    z-index: 99;
    left: 450px;
    top: 100px;
    border-radius: 20px;
    background-color: white;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.input-section {
    height: 40px;
    width: 300px;
    background-color: grey;
    position: relative;
    left: 50px;
    border-radius: 10px;
    display: flex;
    background-color: #E5E4E2;
    border: 1px solid grey;
    margin-top: 20px;
}

.icon {
    height: 40px;
    width: 50px;
    /* background-color: blue; */
    text-align: center;
}

.icon i {
    position: relative;
    top: 10px;
    font-size: 20px;

}

.input-section input {
    width: 220px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.input-section input:focus {
    outline: none;
}


.check {
    height: 40px;
    width: 300px;
    /* background-color: grey; */
    position: relative;
    top: 10px;
    left: 50px;
    display: flex;
}



.check-bx {
    height: 40px;
    width: 70px;
    /* background-color: #298e29; */
}


.check-bx input {
    height: 30px;
    width: 20px;
}

.check p {
    position: relative;
    bottom: 15px;
    left: 0px;
}


.register-btn {
    height: 50px;
    width: 300px;
    position: relative;
    top: 25px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    background-color: #298e29;
    color: white;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    top: 10px;
    font-size: 20px;
    border-radius: 100%;
    width: 30px;
    width: 30px;
    text-align: center;
    border: none;
}

.close i {
    position: relative;
    left: -2px;
    top: 1px;

}


.close:focus {
    outline: noe;
}

.already {
    position: relative;
    top: 40px;
}

.already a {
    color: #298e29;
}

.menu {
    display: none;
}

.navs {
    display: none;
}



@media (max-width:480px) {
    * {
        overflow-x: hidden;
    }

    .header {
        width: 100%;
        /* background-color: blue; */
        overflow: hidden;
        display: flex;
    }

    .navigations {
        display: none;
    }

    .enter {
        display: none;
    }

    .logo {
        height: 40px;
        width: 150px;
        /* background-color: red; */
        position: relative;
        left: 100px;
    }

    .menu {
        height: 30px;
        width: 40px;
        /* background-color: grey; */
        position: relative;
        left: 160px;
        top: 13px;
        text-align: center;
        display: block;
    }

    .menu i {
        font-size: 24px;
        position: relative;
        top: 2px;
    }

    .navs {
        position: absolute;
        height: 150px;
        width: 150px;
        background-color: rgba(199, 190, 190, 0.945);
        right: 20px;
        top: 50px;
        z-index: 99;
        display: none;
        border: 1px solid black;
    }

    .navs.active {
        display: block;
        opacity: 1;
    }

    .navs ul {
        font-size: 20px;
        position: relative;
        bottom: 10px;
        margin-bottom: 10px;
        text-align: start;
        width: 150px;
        left: -30px;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    #login{
        overflow: hidden;
        cursor: pointer;
    }

    .navs ul a {
        text-decoration: none;
        color: black;
        margin-top: 5px;
        font-weight: 500;
    }

    .register{
        background-color: transparent;
    }

    .navs ul a:hover{
        color: #298e29;
    }


    .main{
        /* background-color: rgb(91, 100, 91); */
        overflow: hidden;
        height: auto;
    }

    .main-content{
        /* background-color: red; */
        position: relative;
        left: 10px;
        width: 340px;
        position: relative;
        top: 10px;
        height: auto;
    }

    .main-content h1{
        font-size: 28px;
    }

    .heading{
        width: 250px;
        position: relative;
        left: 0px;
        font-size: 18px;
        height: auto;
        bottom: 5px;
        word-wrap: break-word;
        
    }

    .main-content p{
        width: 340px;
    }

    .get{
        position: absolute;
        left: 35px;
        top: 420px;
        width: 300px;
    }


    .blur{
        width: 100%;
    }

    .register-container{
        position: relative;
        left: 15px;
        width: 350px;
    }

    .input-section{
        position: relative;
        left: 20px;
    }

    .check{
        /* background-color: grey; */
        position: relative;
        left: 20px;
    }

    .check p{
        height: 50px;
        position: relative;
        left: -5px;
    }


}