#form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

form {
    box-sizing: border-box;
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #a132cd;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #f2edf3;
    font-family: "Alegreya";
}

input[type="image"] {
    display: block;
    width: 5rem;
    height: auto;
    margin: 0 auto;
    margin-top: 1rem;
}

input[type="image"]:hover {
    animation: bounce 1s ease infinite;
    cursor: pointer;
}