
.FormSearchBar{
    margin-left: 150px!important;
    margin-right: 150px!important;
}

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
h1 {
    font-family: Georgia,serif;
    font-size: 30px;
    color: black;
    font-style: normal;
    text-align: center;
}



.form
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:white;
}
.wrapper
{
    width: 420px;
    background: deepskyblue;
    opacity: 75%;
    border: none;
    color:#ffffff;
    padding: 30px 40px;
}
.wrapper h1
{
    font-size: 40px;
    text-align: center;
}
.wrapper .btn
{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 20px;
}
.wrapper .input-box
{
    position: relative;
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid gold;
    border-radius: 30px;
}
.input-box input
{
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid lightgreen;
    border-radius: 40px;
    font-size: 18px;
    color: white;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder
{
    color: white;
}
.input-box i
{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.buttonM {
    background: linear-gradient(to right, #ff6600 0%, #ffcc00 100%);
}