*{
    scroll-behavior: smooth;
    cursor: auto;    
  }
  body {
    background-color: #F7F3EF;
    margin: 0px;
    
  }
  
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 50px 0px 70px;
    display: flex;
    z-index: 999;
    justify-items: center;
}

  
  .logo{
    margin-right: 170px;
    width: 300px;
    height: 100px;
    background-image: url("../images/logo.png");
    background-size: 60%;
    background-repeat: no-repeat;
    margin-top: 15px;
  }
  
  ul{
      display: flex;
      gap:70px;
      justify-content: space-around;
  }
  #navbar{
    transition: all 300ms ease;
  }
  
  #navbar li{
      list-style: none;
  }
  
  #navbar a{
      font-weight: 600;
      font-size: 1.5rem;
      font-family: 'Poppins';
      color: black;
      text-decoration: none;
      transition: all 400ms ease;
    border-radius: 15px;
    
  }

  #navbar a:hover {
    background-color: #fff;
    padding: 0.86rem 1.51rem;
    
  }
  #con{
      background-color: #ffe55b;
      padding: 10px 20px;
      border-radius: 13px;
  }
  /*==================================================================*/

    html,body {
    height: 100%;
    margin: 0;
    padding: 0;
    }

body{
    font-family: "Poppins";
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffe55b;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    .container{
    width: 100%;
    height: 100vh;
    background-image: url(background.png);
    
    background-position: center;
    background-size: cover;
    position: relative;


}  
.form-box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 50px 60px 70px;
    text-align: center;
}
.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color:rgba(16, 17, 3, 0.889);
    position: relative;

}
.form-box h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #130f01;
    position: absolute;
    bottom: -12px; 
    left: 50%;
    transform: translateX(-50%);
}
.input-field{
    background: #130f01;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
}
input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 10px 15px;
}
.input-field i{
    margin-left: 15px;
    color: #fbf3f3;
}
form p{
    text-align: left;
    font-size: 13px;

}
form p a{
    text-decoration: wavy;
    color:rgb(222, 219, 219);
}
.btn-field{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.btn-field button{
    flex-basis: 48%;
    background-color:#ffe55b ;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s ;
}
.input-group{
    height: 280px;
}
.btn-field button.disable{
    background: #dbd7d7;
    color: #6a6666;
}
