.container {
    display: flex;
    min-height: 800px;
    min-height: 100vh;
    border-radius: 0px;
}

.left-side {
    flex: 1;
    padding: 20px;
    background-color: black;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    width: 45%;
    min-height: 50vh;
    margin: auto;
    padding: 40px 55px;
    border-radius: 10px;
    margin-bottom: 8vh;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

label {
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
    font-family: "Open Sans";
    font-weight: bold;
    color: #484848;
}

input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 5px;
    height: 1em;
  }

  label {
    vertical-align: middle;
    height: auto;
  }

  .modal-body {
    place-items: flex-start;
  }

input:not([type="checkbox"]),
textarea,
button{
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

select  {
    width: 103%;
    padding: 10px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.right-side {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   
}

.modal_container {
    max-width: 1024px;
}

#contract {
    box-sizing: border-box;
    padding: 1.5em;
    display: block;
    margin: auto;
    margin-top: 20px;
    width: 100%;
    height: 50vh;
    border: 1px solid #ccc;
    overflow-y: scroll;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none;
}

.centered-image {
    width: auto;
    height: 120%;
    object-fit: contain;
    position: absolute;
    top: 60%;
    left: 85%;
    transform: translate(-50%, -50%);
}


@media screen and (max-width : 1080px) {
    .right-side {
        display: none;
    }

    .left-side {
        padding: 5px;
    }

    form {
        width: 60%;
    }
}

@media (max-width: 650px) {
    form h2 {
        font-size: 20px !important;
    }

    form label, form button {
        font-size: 15px !important;
    }
}