body{
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-family: verdana,sans-serif,'times new roman';
}
header{
    width: 100%;
    height: 60px;
    background: purple;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
}
.icon{
    color: gold;
    margin-top: 8px;
}
.button{
    width: 100px;
    padding: 2%;
    outline: none;
    border: none;
    background: black;
    color: white;
    float: right;
    margin-top: 11px;
    margin-right: 20px;
}
.form{
    width: 25%;
    height: auto;
    padding: 2%;
    margin-top: 100px;
}
.form input{
    width:90%;
    padding: 3%;
    border: none;
    border-bottom: 2px solid #e1e1e1;
    outline: none;
    background:#ffffff;
    margin-bottom: 20px;
}

.form input:focus{
    border-bottom: 2px solid purple;
}
.form #submit{
    background:purple;
    color:white;
    outline: none;
    border: none;
    width: 80%;
    font-size: 1.1em;
    font-family: verdana,sans-serif;
    border-radius: 10px;
}
.form #submit:hover{
    background: #e1e1e1;
    color: black;
}
.form #submit:focus{
    border: none;
}