form > p{
    display: inline;
}
input[type=text], input[type=password]{
    display: inline;
    width: 90vw;
    padding: 10px 2vw;
    margin: 10px 3vw;
    font-size: 20px;
    border: none;
    border-radius: 3px;
    background: -webkit-linear-gradient(45deg, #082847, #5C99A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: black;
}
label{
    display: inline;
}

input[id=submit]{
    border-radius: 5px;
    border: none;
    width: 150px;
    position: absolute;
    left: 50%;
    margin-left: -75px;
    font-size: 20px;
    -webkit-appearance: none;

}

input[id=submit] {
    /** Offset the Position **/
    position: relative;
    top: 40px;
    margin-top: 0;
    margin-bottom: 10px;
  
    /** 3D Block Effect **/
    box-shadow: 0 10px 3px 0 rgba(0, 0, 0, 0.2);
  
    /** Make it look pretty **/
    display: block;
    background: #2A83FE;
    color: #eee;
    padding: 1em 2em;
    border: 0;
    cursor: pointer;
    font-size: 1.2em;
    opacity: 0.9;
    border-radius: 10px;
}

input[id=submit]:hover {
    opacity: 1;
}

span {
    width: 100vw;
    text-align: center;
}

textarea{
    width: 90vw;
    margin: 5vw;
    padding: 2vw;
    min-height: 200px;
    font-size: 20px;
}