#form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    color: #254e70;
    width: 100%;
    max-width: 1100px;
    margin: 15vh auto 7vh auto;
}

/* FORM PART */
#form>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 450px;
    margin: 0 20px;
}

#form form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#form form input:not([type="submit"]),
#form form textarea {
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    border: rgb(0, 0, 0, 0.07) 1px solid;
    font-size: 15px;
    outline: none;
}

#form form textarea {
    height: 18vh;
    min-height: 60px;
}

#form form input[type="submit"] {
    outline: none;
    border: rgb(0, 0, 0, 0.07) 1px solid;
    border-radius: 10px;
    padding: 15px 0;
    font-size: 16px;
    color: rgb(0, 0, 0, 0.6);
    font-weight: 500;
    margin: 10px 0;
}

#form form input::placeholder,
#form form textarea::placeholder {
    color: lightgrey;
}

/* TEXT PART */
#form>div:last-child {
    width: 90vw;
    max-width: 400px;
    text-align: justify;
    color: grey;
    margin: 20px;
}

#website {
    display: none;
}