input {
    border: hidden;
    border: 0;
}
button {
    padding: 0;
    margin: 0;
    color: inherit;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.dflex{
	display: flex;
}
.searchblock{
	min-height: 500px;

	width: 100%;
	position: relative;

	border-radius: 0 0 24px 24px;
	height: calc(100vh - 80px);
	
	background: linear-gradient(172deg, #ffffff 48.51%, #f9fafb 96.94%, #f9fafb 150.05%);
}

.grid{
	display: grid;
    grid-template-rows: 1fr auto;
    justify-content: center;
	height: 100%;
}
.centerform{
	flex-direction: column;
	    justify-content: center;
    align-items: center;
	display: flex;
}

.logo{
    height: 80px;
    margin-left: 16px;
    margin-bottom: 32px;
}
.searchwidth{
	    width: 662px;
    max-width: 95vw;
    position: relative;
    height: 56px;
}
.searchbar{
	    flex: 1;
    max-width: 662px;
	position:relative
}

.form{
	flex: 1;
    box-sizing: content-box;
    border-radius: 32px;
    background-color: #5d759814;
    background-clip: content-box, padding-box;
    transition: box-shadow var(--motion-duration-200) var(--motion-ease), color var(--motion-duration-300) var(--motion-ease), background-color var(--motion-duration-300) var(--motion-ease);
	align-items: center;
	
	display: flex;
}
.formwrap{
	    flex: 1;
		    align-items: center;
			    margin-left:20px;
				    display: flex;
}


.form input {
    text-overflow: ellipsis;
    background-color: transparent;
    display: block;
    outline: none;
    width: 100%;
    height: 56px;
	
   padding: 0;
    color: #4d596a;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400px;
    letter-spacing: -0.01em;
    font-family:sans-serif;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.formbtn{
	    cursor: pointer;
    display: inline-flex;
    min-width: 32px;
    min-height: 32px;
    border-radius: 9999px;
    background-color: #5d759800;
   
    position: relative;
    gap: 8px;
	
	    align-items: center;
		justify-content: center;
		display: flex;
    width: 40px;
    height: 40px;
	    margin-right: 8px;
    margin-left: 8px;
}
.formbtn .form23{
	display: flex;
    align-items: center;
    gap: 4px;
}

footer{
	position: relative;
    background-color:#000;
	padding:20px;
	color:#fff;
	text-align:center
}

.form:hover{
	background-color:#fff;
	box-shadow:0px 0px 1px 0 rgba(0,0,0,12%),0px 2px 2px -1px rgba(0,0,0,4%), 0px 2px 12px -1px rgba(0,0,0,24%)
}
.searchboxes li {
    background-color: #fff;
    height: 80px;
    width: 80px;
    display: inline-block;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0px 0px 5px #f1f1f1;
	    display: flex;
    flex-direction: row;
    align-items: center;
	padding:10px
}

.searchboxes li img{
	max-width:100%;
}
.searchboxes ul{display:flex;}