.Formcontainer {
    width: 200vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;

}

::placeholder {
    color: #383838;
}

form {
    background: #b9b9b9;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
    border-radius: 25px;
    box-shadow: 0px 0px 18px 0 #0000002c;
    transition: 0.3s ease box-shadow;

}

form:hover {
    box-shadow: 0px 0px 5px 0 #0000002c;
}

form input:active,
form textarea:active,
form placeholder:active {
    border-bottom: 2px solid #4D4DFF;
    color: #4D4DFF;
}

form h4 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form h3 {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form input,
form textarea {
    border-bottom: 2px solid black;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #b9b9b9;
    font-size: 16px;
}

form button {
    font-size: 18px;
    color: #111;
    background-color: transparent;
    padding: 15px;
    border: 2px solid #111;
    size: 18px;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    transition: 300ms;
}

form button:hover {
    background-color: #4D4DFF;
    color: white;
    border: 2px solid #4D4DFF;
    transform: translateY(-10px);
}

a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

@media only screen and (max-width: 900px) {
    iframe {
        width: 300px;
        height: 400px;
        filter: invert(100%);
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: -100px;
    }

    .Formcontainer {
        width: 50vh;
        margin-bottom: 100px;
    }


    form h3 {
        padding-top: 30px;
    }

    form h4{
        text-align: center;
    }

    form button {
        margin-bottom: 30px;
    }


}