fieldset {
    border: medium none;
    margin: 0 0 10px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    padding: 0;
}

form input[type="text"],
form input[type="email"],
form textarea {

    width: 100%;
    border: 1px solid #ccc;
    background-color: aliceblue;
    margin: 0 0 5px;
    padding: 10px;
}


form input[type="text"]:hover,
form input[type="email"]:hover,
form textarea:hover {

    transition: border-color 0.3s ease-in-out;
    border: 1px solid grey;
}

form textarea{   
    height: 100px;
    resize: none;
}

form {
    width: 40%;
}

/* button */

button{
    width: 137%;
}

form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background-color: #541c83;
    color: aliceblue;
    margin:  0 0 5px;
    padding: 10px;
    font-size: 15px; 
}

form button[type="submit"]:hover {
    background-color: #c7c827;
    transition: background-color 0.3s ease-in-out;
}

form button[type="submit"]:active {
    background-color: darkslategrey;
    transition: background-color 0.3s ease-in-out;
}
