*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 150vh;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
}

.backgroundimg{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(26,50,93,0.8),rgba(26,50,93,0.8)), url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.logo{

    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.form-box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 30px 40px 50px;
    text-align: center;
    border-radius: 10%;

}

.form-box1{
    width: 90%;
    max-width: 620px;
   position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 30px 40px 50px;
    text-align: center;
    border-radius: 5%;
    height:auto;

}
.form-box h1{
    font-size: 30px;
    margin-bottom: 40px;
    color: #1a325d;
    position: relative;
}

.form-box h1::after {
    content: '';
    width: 40px;
    height: 4px;
    border-radius: 3px;
    background: #1a325d;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%)
}

.input-field{
    background: #eaeaea;
    margin: 10px 0;
    border-radius: 3px;
    display: flex;
    width:100%;
    align-items: center;
    max-height: 55px;
    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: #c78a66;

}

form p{
    text-align: left;
    font-size: 13px;
}

form p a{
    text-decoration: none;
    color: #3c00a0;
}

.btn-field{
    width: 100%;
    display: flex;
    justify-content:center;
}

.btn-field button{
    flex-basis: 48%;
    background: #1a325d;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}

.input-group{
align-content: center;
    height: auto;
}

.btn-field button.disable{
    background: #c78a66;
    color: #1a325d;
    ;
}

/*  -------------------------*/

.profile-logo{
    width: 120px;
    margin: 0;
    padding: 0;
    left: 10px;
    padding-top: 10px;
    padding-bottom: 30px;    
}

.sidebar {
    background-color: #1a325d;
    color: #fff;
    width: 12%;
    height: 100vh;
    padding: 20px;
  }
  
  .main-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
    display:flex;
	position: relative;
  }
  .main-content{
    margin-bottom: 10px;
  }
  
  .sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar ul li {
	margin-top: 25px;
    margin-bottom: 25px;
	padding-left: 10px;
    
  }
  
  .sidebar ul li:hover {
	  color: #000;
	  background-color: #fff;
	  cursor: pointer;
	   
  }
  
  .sidebar a {
    color: #fff;
    text-decoration: none;
  }
  
  .sidebar a:hover {
    text-decoration: underline;
  }
  
  .content-header {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .topbar{
	  width: 100%;
	  height: 10vh;
	  background-color: #000;
	  
  }
  
  .topbar img {
	  width: 70px;
	  height: 70px;
	  border-radius: 50%; 
	  position: absolute;
	  right: 3%;
  }
  .about-title{
	  padding-top: 100px;
	  padding-left: 25%;
	  position: absolute;
	  font-family: 'Poppins', sans-serif;
	  font-size: 28px;
	  
	   
  }
  