div.page {
    width: 100%;
    height: 100vh;
    padding: 40px;
    background-image: url('../images/authentication_background.jpg');
    background-size: cover;
    background-position: right center;
    overflow: hidden;
    position: relative;
}
div.page > form {
    width: 100%;
    max-width: 480px;
    height: calc(100% - 80px);
    position: absolute;
    display: flex;
    flex-direction: column;
}
div.page header.brand > h1 {
    width: 56px;
    height: 56px;
    margin: 0;
    background-image: url('../images/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    text-indent: -9999px;
}
div.page header.brand > h1 > a {
    display: block;
}
div.page main {
    margin: auto 0;
}
div.page main > section.title {
    margin-bottom: 40px;
}
div.page main > section.title > h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}
div.page main > section.title > p {
    margin: 4px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #888888;
}
div.page main > section.title > div.error {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 10px 16px;
    background-color: rgba(255, 70, 80, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(255, 70, 80, 0.2);
    color: #ff4650;
}
div.page main > section.title > div.error > p {
    margin: 0;
}
div.page main > section.form > label.form-group {
    width: 100%;
    max-width: 480px;
    height: 96px;
    margin: 0 0 4px 0;
    display: block;
    position: relative;
    border-radius: 4px;
    background-color: #323232;
}
div.page main > section.form > label.form-group > span.title {
    font-size: 11px;
    font-weight: 400;
    color: #888888;
    position: absolute;
    top: 16px;
    left: 16px;
}
div.page main > section.form > label.form-group > input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: #ffffff;
    padding: 40px 16px 16px 16px;
    outline: none;
}
div.page main > section.form > div.action > button[type=submit] {
    width: 100%;
    height: 48px;
    background-color: #4782ff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
div.page footer > p {
    margin: 0;
    font-size: 14px;
    color: #888888;
}