*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body{
    
    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(-90deg,#34e89e,#0f344e);
}
.wrapper
{
  min-height: 100%;
  position: relative;
  padding-bottom: 55px;
}

.card-top
{
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.2);
  margin: auto;
  padding: 10px 10px 10px 10px;
  margin-bottom: 15px;
  margin-top: 11vh;
  

}
.card-top img
{
  width: 300px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  background: no-repeat center center;
}
.container
{
    position: relative;
    padding: 20px 10px;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.2);
    width: 320px;
    margin: auto;
    z-index: 0;
}
.container .inputBox .fa
{
    color: blue;
}
.container h2
{
    color: #111;
    margin-bottom: 45px;
    line-height: 1em;
    font-weight:700;
    padding-left: 10px;
    text-align: center;
   
   font-family: 'Playfair Display SC', serif;
    
}
.container .inputBox
{
    position: relative;
    width: 280px;
    height: 46px;
    margin-bottom: 35px;
    align-self: center;
    display: flex;
    margin: auto;
    flex-direction: column;
}
.container .inputBox:last-child{
    margin-bottom: 0;
    
    
}
.container .inputBox input {
    position: absolute;
    top: 0;
    left: 3%;
    width: 100%;
    border: 1px solid #111;
    background: transparent;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    font-size: 16px;
    color: rgb(4, 2, 15);
    font-weight: 300;
    
}
.container .inputBox .jumptxt{
    text-align: center;
    position: absolute;
    padding-left: 85px;
    font-weight: 500;
}

.container .inputBox span {
    position: absolute;
    top: 1px;
    left: 1px;
    padding: 10px;
    display: inline-block;
    font-size: 16px;
    color: #111;
    font-weight: 300;
    transition: 0.5s;
    pointer-events: none;
    font-style: italic;

}
.container .inputBox .jumptxt{
  text-align: center;
}
.container .inputBox input:focus ~ span,
.container .inputBox input:valid ~ span
{
    transform: translateX(-8px) translateY(-32px);
    font-size: 12px;
}
.container .inputBox button
{
    background:#34e89e;
    color: white;
    border: none;
    width: 80%;
    height: 40px;
    cursor: pointer;
    font-weight: 300 ;
    align-self: center;
    
    
    
    border-radius: 4px;
}
.container .inputBox button:hover
{
    background: #b3bec5;
    color: rgb(136, 159, 245);
}


nav {
    height: 50px;
    position: fixed;
    top: 0;
   overflow: hidden;
   background: linear-gradient(-90deg,#34e89e,#0f344e);
   z-index: 5;
   width: 100%;
  }
  
  .navlink {
    display: flex;
    list-style: none;
    width: 50%;
    height: 90%;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
  }
  .logo{
    float: left;
    padding: 9px;
    object-fit: cover;
    transform: scale(1.8);
    margin-left: 5%;
  }
  .logo img
  {
    height: 40px;
  }
  .navlink li a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-family: 'Kiwi Maru', serif ;
  }
  
  footer{
    background: linear-gradient(-90deg,#34e89e,#0f344e);
    padding: 16px 25px;
    
    color: #000;
    text-align: center;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    border-style: solid;
    border-color: #fff;
    border-width: 3px 0 0;
    overflow: hidden;
  }

  footer span a{
    color: yellow;
    text-decoration: none;
  }

  footer span a:hover{
    text-decoration: underline;
  }
  .bg-white{
    width: 85vw;
    margin: auto;
    padding: 20px 20px;
    margin-bottom: 10vh;
    margin-top: 10vh;
    
    /* padding-bottom: 50px; */
  }
  
  @media screen and (max-width: 768px) {
    .line {
      width: 30px;
      height: 3px;
      background: white;
      margin: 5px;
      
    }
    nav {
      position: fixed;
    }
  
    .bar {
      position: fixed;
      cursor: pointer;
      right: 5%;
      top: 5%;
      transform: translate(-5%, -50%);
      z-index: 4;
      float: right;
    }
  
    .navlink {
      position: fixed;
      
      background: linear-gradient(45deg,#fead06,#c00def);
    

      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(0px at 90% -10%);
      -webkit-clip-path: circle(0px at 90% -10%);
      transition: all 0.4s ease-out;
      pointer-events: none;
    }
    .navlink.open {
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
      z-index: 2;
    }
    .card-top{
      display: flex;
      height: 210px;
      align-items: center;
      justify-content: center;
      width: 310px;
      border-radius: 11px;
      margin-top: 10vh;
      margin-bottom: 9px;
    }
    .container h2{
      margin-bottom: 26px;
    }
    .container .inputBox{
      margin-bottom: 20px;
    }
    .landing {
      flex-direction: column;
    }
    .navlink li {
      opacity: 0;
    }
    .navlink li a {
      font-size: 22px;
      font-weight: bold;
      
      
    }
    .navlink li:nth-child(1) {
      transition: all 0.25s ease 0.1s;
    }
    .navlink li:nth-child(2) {
      transition: all 0.25s ease 0.18s;
    }
    .navlink li:nth-child(3) {
      transition: all 0.25s ease 0.26s;
    }
    li.fade {
      opacity: 1;
    }

    footer{
      padding:5px 10px;
      height: 35px;
    }
    
  }
  @media(max-width:320px)
  {
   .container{
     width: 310px;
   } 
  }
  