html, body {
    height: 100%;
}

body {
    font-family: roboto, sans-serif;
    color: #ffffff;

    background-position: center;
    background-image: url("../../assets/img/login_background.png");
}

.page-title {
    font-weight: bold;
    font-size: 30px;

    text-align: center;
    padding-bottom: 10px;
}

.login-card {
    background-color: #1b1d20;
    -moz-box-shadow: 0 0 30px #000;
    -webkit-box-shadow: 0 0 30px #000;
    box-shadow: 0 0 30px #000;

    padding-top: 30px;
    padding-bottom: 20px;
}

.login-input {
    background-color: #242526;

    outline: none;
    border-style: hidden;
    border-radius: 10px;
    margin-bottom: 15px;

    color: #eeeeee;
}

.login-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b8b8b8;
    opacity: 1; /* Firefox */
}

.login-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #b8b8b8;
}

.login-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #b8b8b8;
}

.login-input:hover {
    background-color: #343638;
}

.login-input:invalid {
    border-color: #D92550;
    border-style: solid;
}

.login-input:focus,
.login-input:active {
    background-color: #343638;
    color: #eeeeee;
    outline: none;
    box-shadow: none;
}

.login-btn {
    outline: none;
    border-style: hidden;
    border-radius: 10px;
    color: #fff;
    background-color: #3f37c9;

    margin-top: 20px;
    margin-bottom: 10px;
}

.login-btn:focus,
.login-btn:active {
    background-color: #3f37c9;

    color: #fff;
    outline: none;
    box-shadow: none;
}

.login-btn:hover {
    color: #fff;
    background-color: #342cc4;
}

.login-link {
    padding-top: 20px;

    color: #D92550;
    text-decoration: none;
}


.login-link:hover {
    color: #c22349;
    text-decoration: none;
}

.register-message {
    font-size: 17px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 3px;
    top: calc(50% - 0.5em);
}