@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    margin: 30px;
}
a {
    color: blue;
    text-decoration: underline;
}
a:hover {
    color: orangered;
    text-decoration: none;;
}
.cover {
    text-align: center;
}
.cover img {
    width: 100%;
    max-width: 600px;
}
.info {
    border: 5px solid #eee;
    padding: 20px;
    margin: 20px 0;
}
.item {
    color: #666;
    margin-bottom: 20px;
}
.item strong {
    color: #111;
}

.login {
    width: 100%;
    max-width: 500px;
    border: 5px solid #eee;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.login form {
    margin: 20px 0 0 0;
}
input, button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
input {
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #333 !important;
    padding: 0 0 10px 0;
    outline: none;
    margin-bottom: 20px;
}
button {
    outline: none;
    border: none;
    color: white;
    background: purple;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
}

a[href=''] {
    display: none;
}