.title {
    position:relative;
    font-family: 'Myriad Pro','Helvetica Neue', Helvetica;
    font-weight:bold;
    font-size: 25px;
    text-shadow: 0px 1px 2px rgba(255,255,255,.5);
    color: #444;
    text-align:center;
}

body{
    display: grid;
    grid-template-rows: 100vh;
    align-items: center; background-color: white;
    background: #50a3a2;
    background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
    background: -moz-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
    background: -o-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
    background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
}

img{
    display: block; margin-left: auto; margin-right: auto;
}

h1, h5{
    text-align: center; font-family: 'Myriad Pro','Helvetica Neue', Helvetica; font-weight:bold;
    text-shadow: 0px 1px 2px rgba(255,255,255,.5);        
    color: white;"
}

.title{
    color: white;
}

form {
    background: none;
    margin: 20px auto 0;
    padding: 10px;
    width: 280px;
}

input {
    display: block;
    font-size: 14px;
    width:240px;
    margin: 10px auto;
    padding: 10px 8px 10px 8px;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px rgba(0,0,0, .55), 0px 1px 1px rgba(255,255,255,.5);
    border: 1px solid #666;
}

input {
    opacity: 0.5;
}

input:hover,
input:focus {
    opacity: .7;
    color:#08c;
    border: 1px solid #08c;
    box-shadow: 0px 1px 0px rgba(255,255,255,.25),inset 0px 3px 6px rgba(0,0,0,.25);
}

input[type="text"]:focus,
input[type="password"]:focus {
    box-shadow: inset 0 1px 2px rgba(255,255,255, .35), 0px 1px 15px rgba(0,246,255,.5);
    border: 1px solid #08c;
    outline: none;
}

input[type="submit"] {
    appearance: none;
    opacity: .99;
    width:120px;
    box-shadow: inset 0 1px 2px rgba(255,255,255, .35), 0px 1px 6px rgba(0,246,255,.5);
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    text-shadow:0px -1px 0px rgba(0,0,0,.5);
    background: #50a3a2;
    background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);}

input[type="submit"]:hover {
    background: #08c;
    width:120px;
    border: 1px solid #0a5378;
    border-radius: 3px;
    box-shadow: inset 0px 3px 16px rgba(0,0,0,.25),0px 1px 10px rgba(255,255,255,.5),inset 0px -1px 2px rgba(255,255,255,.35);
    text-shadow:0px 1px 1px rgba(0,0,0,.65);
    -webkit-transition: all 0.40s ease-out;
    transition: all 0.40s ease-out;
}