.title {
    margin-top: 25px;
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    padding-right: 10px;
}
.title img {
    width: 40px;
    height: 36px;
    border-radius: 10px;

}
.title span {
    font-family: Cairo;
    font-size: 20px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: right;
    color: #2c7be5;
    margin-right: 4px;
}
.search-part {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}
.search-part select,
.search-part input,
.search-part textarea {
    width: 356px;
    height: 36px;
    border-radius: 18px;
    border: 1px solid #2c7be5;
    padding: 0px 10px;
    color: #2c7be5;
    margin-top: 5px;
}
.search-part textarea {
    min-height: 100px;
}
.search-part *::placeholder {
    color: #2c7be5;
}
.preview-img {
    margin-top: 5px;
    border-radius: 18px;
    border: 1px solid #2c7be5;
    height: 175px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.preview-img img {
    max-width: 100%;
    height: 100%;
    background-size: contain;
    border-radius: 18px;
}
.preview-img input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.submit-btn {
    margin: 25px 0px;
    display: flex;
    justify-content: center;
}
.submit-btn button {
    background-color: #2c7be5;
    border: none;
    color: white;
    width: 110px;
    height: 36px;
    border-radius: 18px;
}
