.Form-side a {
    padding-bottom: 10px;
    border-bottom: .5px solid rgba(0, 0, 0, 0.565);
    width: fit-content;
}

.contact-img img {
    object-fit: cover;
    object-position: 50% 50%;
    min-height: 50rem;
    max-height: 60.6rem;
    min-width: 45vw
}


@media screen and (max-width:1600px) {
    .contact-img img {
        min-height: 54.7rem;
        max-height: 60rem;
    }
}

@media screen and (max-width: 1000px) {
    .contact-img img {
        max-height: 20rem;
        min-height: 20rem;
        min-width: 90vw;
    }
}


/* ------------------- */

.form-main {
    color: rgb(255, 255, 255);
    width: 100%;
    overflow: hidden;
}

form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    background-color: transparent;
    padding: 1rem 0;
    min-height: 26rem;
    font-family: inherit !important;
    font-size: 1.2rem;
    max-width: 100%;
}

::placeholder{
    color: rgb(0, 0, 0) !important;
    opacity: .2 !important;
}

form label{
    color: black;
    font-weight: 900;
}

form h3 {
    font-size: 3rem;
}

input,
input:active,
input:focus,
input::selection,
textarea,
textarea:active,
textarea:focus,
textarea::selection {
    margin: 1% 0 4% !important;
    padding: .5rem 1rem !important;
    outline: none;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 2px solid rgb(0, 0, 0);
    min-width: 100% !important;
    max-width: 100%;
}

textarea {
    resize: vertical;
    /* user can resize vertically, but width is fixed */
    min-height: 10rem;
}

[type="submit"] {
    background-color: rgb(0, 0, 0) !important;
    margin-top: 3%;
    padding: .5rem 2rem;
    color: rgb(255, 255, 255) !important;
    min-width: 100%;
    font-size: 1.6rem;
    border: 1px solid white;
    font-weight: 900 !important;
}

[type="submit"]::after {
    content: " ✆";
}