form {
    margin: 20px auto;
    width: max(200px, 80vw);
    padding: 2vw;
    background: #ffffff;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

form div {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    left: -10px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="email"],
form input[type="text"],
form textarea {
    padding: 10px;
    font-size: larger;
    width: 100%;
}

form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: larger;
    font-weight: bold;
}

form button:hover {
    background-color: #45a049;
}
