fieldset {

    text-align: left;
    background-image: linear-gradient(to bottom right, #830062, #6b002d);
    border: 2px solid  #ad0082;
    border-radius: 15px;
    box-shadow: 0 0 5px #8f0056;
    border-radius: 15px;

    h1 {

        font-size: 200%;
        margin-bottom: 10px;

    }

    input[type="text"], input[type="password"], input[type="email"] {

        width: 300px;
        padding: 8px;
        margin: 8px 0;
        box-sizing: border-box;
        background-color: #ad0082;
        border: none;
        color: white;
        font-size: 120%;
        transition-duration: 0.4s;
        border-radius: 10px;

    }

    label {

        font-size: 120%;

    }

    button {

        background-color: #ad0082;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 120%;
        transition-duration: 0.4s;
        border-radius: 10px;

    }

    input:hover, button:hover, input:focus {

        background-color: #890067;

    }

}