
body{
    margin: 0;
}

ul{
    /* background-color: #333; */
    background-color: white;
    
    /* background-color: #223a59; */
    /* background-color: white; */
    /* border-bottom: 1px solid black; */
    box-shadow: 0px 0px 3px 0px gray;
    margin: 0;
    overflow: hidden;
    opacity: 1;
    padding: 0;
    /* position: relative; */
    list-style-type: none;
        /* put all the flex and centering css here in the ul and not in the body, this way you will still get a full navbar across the top */
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-item{
    float: left;
}
.navbar-item a{
    color: black;
    text-align: center;
    text-decoration: none;
}
.navbar-item{
    display: inline-block;
    padding: 13px 15px;
}
.navbar-opt{
    border-radius: 4px;
    padding: 17px 20px;
}
.navbar-opt:hover{
    background-color: #f2f2f2;
    cursor: pointer;
}

.form-container{
    border: 0px solid white;
    width: 1170px;
    /* padding-left: 200px; */
    /* margin: 0px 40px 0px 40px;  */  
}

.form-item{
    float: left;
}
.text-field{
    width: 1070px;
    /* border-radius: 3px 3px 3px 3px; */
    border-radius: 20px;
    height: 38px;
    border: 0px solid black;
    margin-left: 0px;
    /* border-right: 0px; */
   /*  border: 0; */
    color: black;
    padding-left: 15px;
    /* float: right; */
    /* margin-right: 100px; */
    /* align-self: center; */
    box-shadow: 0px 0px 2px 0px gray;
    font-size: 15px;
    /* background-color: #e6eeff; */
    /* background-color: #f0f2f5; */
    /* background-color: #f2f2f2; */
    background-color: white;
}
.submit-btn{
    width: 40px;
    height: 34px;
    margin-left: -43.5px;
    border-left: 1px solid lightgray;
    /* border-left: 0px; */
    background-color: #f8f8f8;
    /* background-color: transparent; */
    color: white;
    object-fit: cover;
    margin-top: 2px;
    /* border: 0px solid black; */
    border-radius: 0px 20px 20px 0px;
    /* box-shadow: 0px 0px 1px 1px white; */
}
.submit-btn:hover{
    cursor: pointer;
    background-color: #f2f2f2;
    color: black
}
    /* dropdown css part, start */

li a, .dropbtn:hover{
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.dropdown-content{
    display: none;
    border-radius: 0px;
    z-index: 2;
    position: absolute;
    margin: 13.5px 0px 0px -15.5px;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background-color: white;
}
.dropdown-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown:hover .dropdown-content{
    display: block;
    cursor: pointer;
    margin-top: 13px;
    margin-left: -20px;
}
.dropdown-content a:hover{
    background-color: #f2f2f2f2;
    color: blue;
}
.dropdown:hover .account-opt{
    margin-left: -45px;

} 

   /* end of navbar dropdown */