#rekl-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#rekl-container h1 {
    font-size: clamp(2.5rem, calc(2.5rem + ((1vw - 0.32rem) * 1.2097)), 4rem);
}
#rekl-container img {
    width: 40%;
    object-fit: contain;
    margin-bottom: auto;
}
.side-form-container {
width: 55%;
}
form label {
    font-weight: bold;
}
form input {
    font-weight: normal;
}

form input[type="submit"] {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 100rem;
    padding: 1em 2.6em;
    font-size: 1.3rem;
    letter-spacing: .2em;
    color: #624602;
    background-color: #fdc300;
    background: #ffef1b;
    background: -webkit-gradient(left top,right top,color-stop(0,#ffef1b),color-stop(100%,#f4c016));
    background: -webkit-gradient(linear,left top,right top,from(#ffef1b),to(#f4c016));
    background: linear-gradient(90deg,#ffef1b 0,#f4c016);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffef1b",endColorstr="#f4c016",GradientType=1);
    background-size: 150%;
    background-position: 0;
    text-decoration: none;
    border: none;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}
form input[type="submit"]:hover {
    color: #624602;
    background-position: 100%;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 20%);    
}
@media only screen and (max-width: 991px) {
    #rekl-container img {
        width: 100%;
        max-height: 40rem;
        object-fit: cover;
    }
    .side-form-container {
        width: 100%;
        margin-top: 2rem;
    }
  }
