*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation: sideInFromTop 1s ease-in-out;
}
.navbar img{
   width: 100px;
   animation: rotate 1s ease-in-out;
}
.navbar .center-nav a,.social a{
 color: #3c3b3b;
 margin-left: 5px;
 font-size: 1.7rem;
 transition: all 0.5s ease;
 animation: fadeInUp 1s ease-in-out;
 text-decoration: none;
}
.navbar .center-nav a:first-child{
    color: rgb(255, 81, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
}
.navbar .center-nav a:last-child{
    color:rgb(255, 81, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
}
.navbar.center-nav a:hover,.social a:hover{
    color: rgb(255,140, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
    text-decoration: none;
}

/* new styles */
.navbar.center-nav a{
    position: relative;
    text-decoration: none;
}
.navbar.center-nav a::before{
    content: "";
    position: absolute ;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(255,140, 0);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    
}
.navbar.center-nav a:hover before{ 
    transform: scaleX(1);
   visibility: visible;
}

  
.container{
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(rgba(72, 38, 1, 0.8),rgba(0,0,0,0.5)),url(bgimg.webp);
    background-position: center;
    background-size: cover;
    position: relative;
}
.form-box{
    width: 90%;
    position: absolute;
    max-width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #ffffff;
    padding: 50px 60px 70px;
    text-align: center;
}
.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color:#0b0d2d;
    position: relative;
}

.form-box h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: rgb(53, 43, 20);
    position: absolute;
    left: 45%;
    bottom: -12px;
    transform: translateY(-50%);
}
.input-field{
    background: #eaeaea;
    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: 18px 15px;
}
.input-field i{
    margin-left: 15px;
    color: #999;

}
form p{
    text-align: left;
    font-size:14px ;
}

form p a{
    text-decoration: none;
    color:rgb(255,140, 0);
}
.btn-field{
    width: 100%;
    display: flex;
    justify-content: space-between;

}
.btn-field button{
    flex-basis: 48%;
    background: rgb(255,140, 0);
    color: #ffffff   ;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    
}
.input-group{
   height: 280px;

}
.btn-field button.disabled{
  background: #eaeaea;
  color: #555;
}