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

.container{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container header{
     width: 100%;
     height: 100px;
 
     display: flex;
     justify-content: space-between;
     
    
}
header .con-1{
    width: 60%;
    height: 100%;
   
    display: flex;
    padding: 20px;
    gap: 10px;
}

.con-1 .logo-1{
    width: 150px;
    height: 40px;
    border-radius: 10px;
    background-color: yellow;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px ;
}
.logo-1 img{
    width: 30px;
    height: 70%;
}
.logo-1 p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    right: 20px;
}

.con-1 .logo-2{
     width: 150px;
    height: 40px;
    border-radius: 10px;
    background-color: rgb(239, 228, 228);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px ;
}
.logo-2 img{
    width: 30px;
    height: 50%;
}
.logo-2 p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    right: 30px;
}

header .con-2{
    width: 37%;
    height: 100%;
    margin-top: 30PX;
    margin-left: 200PX;
   
}
header .con-2 span{
    color: blue;
}
.boxes{
    display: flex;
    justify-content: space-between;
    
}
.box-1{
    margin-left: 250px; 
    color: blue;
    
}
.box-1 input{
    width: 700px;
    height: 40px;
    border-radius: 10px;
    border-color: blue;
    
    
}
.box-2{
    display: flex;
    margin-right: 450px;
    gap: 10px;

}
.box-2 select{
    margin-top: 8px;
}

select{
    height: 20px;
}
.box-2 i{
    font-size: 25px;
    margin-top: 3px;
}
.boo p{
    margin-left: 900px;
    
}
.icons{
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 80%;
       
}
.icons p{
    display: flex;
    position: relative;
    right: 80px;
    top: 30px; 
  
}
hr{
    margin: auto;
    width: 80%;
}
.icons p:hover{
    cursor: pointer;
    color: red;
}






