#app {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    display: flex;
    width: inherit;
    height: inherit;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #e3e7ed;
}

input {
    width: 100%;
    border: none;
    border-radius: 4px;
    margin: 4px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
    box-shadow: 0 0 0 1px rgba(43, 45, 80, .16),
        0 0 0 1px rgba(6, 122, 184, 0),
        0 0 0 2px rgba(6, 122, 184, 0),
        0 1px 1px rgba(0, 0, 0, .08);
}

button {
    background-color: #6174d1;
    border: none;
    color: white;
    padding: 7px 32px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 0 0 1px rgba(43, 45, 80, .1),
        0 2px 5px 0 rgba(43, 45, 80, .08),
        0 1px 1.5px 0 rgba(0, 0, 0, .07),
        0 1px 2px 0 rgba(0, 0, 0, .08);
}

button:focus {
    outline: none;
}

.copyright {
    font-size: 12px;
    margin-top: 25px;
    position: absolute;
    bottom: 30px;
    display: block;
    padding: 0 20px;
}

.alert {
    margin: 5px 0 10px 0;
    color: #cd3c63;
}

@media (max-height: 500px) {
    .copyright {
        display: none;
    }
}

h2 {
    font-weight: 100;
}

.links a {
    padding: 0 5px;
}

a {
    color: #1d3c6a;
}
