.form {
    display: none;
    flex-direction: column;
    position: absolute;
    transform: translate(-50%, -80%);
    left: 50%;
    box-shadow: 0 0 50px black;
    border-radius: 5px;
    background-color: rgb(137, 164, 165);
}

.remove-form {
    background-image: url(images/icon/remove_icon.svg);
    background-size: 20px;
    height: 20px;
    width: 20px;
    right: 0;
    position: absolute;
    box-shadow: 0 0 3px black;
    border-radius: 5px;
}
.remove-form:hover {
    background-image: url(images/icon/remove_icon_hover.svg);
    box-shadow: 0 0 10px rgb(0, 0, 0);
}

.form input, textarea {
    background-color: rgb(241, 255, 231);
    color: black;
    outline: none;
    border: none;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
}
.form input:hover, textarea:hover {
    box-shadow: 0 0 3px black;
}
.form input {
    margin-top: 25px;
    margin-right: 25px;
}
.form textarea {
    height: 100px;
    margin-top: -5px;
}

.form button {
    border: none;
    border-radius: 5px;
    width: 80%;
    height: 25px;
    margin: auto;
    margin-bottom: 10px;
    background-color: antiquewhite;
}
.form button:hover {
    background-color: rgb(255, 255, 254);
    box-shadow: 0 0 3px black;
}