* {
    box-sizing: border-box;
    font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
    font-size: 12px;
}

body {
    background: #fff;
    height: 100vh;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

a,
a:hover,
a:focus,
a:active {
    color: #000;
}

.login-page {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #ebebeb;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    display: grid;
    grid-template-columns: repeat(3, 250px);
    grid-template-rows: 96px 405px 85px;
    height: 594px;
    column-gap: 70px;
    padding: 0 35px;
}

.login-box header,
.login-box footer {
    color: #9b9d9e;
    grid-column-end: span 3;
}

.login-box header {
	color: red;
	font-weight: bold;
    place-self: center;
}

.login-box footer {
    place-self: end center;
}

.login-form {
    display: flex;
    flex-direction: column;
    height: 405px;
    margin: 0;
}

.login-form .logo {
    height: 100px;
    margin-bottom: 45px;
    width: 100%;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    outline: 0;
    background: #fff;
    height: 30px;
    width: 100%;
    border: 0;
    font-size: 14px;
    margin-bottom: 25px;
}

.login-form input[type="text"] {
    padding: 0 5px 0 30px;
}

.login-form input[type="password"] {
    padding: 0 30px;
}

.login-form .username-box {
    position: relative;
}

.login-form .username-box i {
    position: absolute;
    left: 7px;
    top: 9px;
    color: gray;
}

.login-form .username-box i#toggle-password,
.login-form .username-box i#toggle-password-match {
    left: initial;
    right: 7px;
    cursor: pointer;
}

.login-form input[type="submit"] {
    background-color: #c4c4c4;
    outline: 0;
    height: 30px;
    width: 100%;
    border: 0;
    font-size: 14px;
    margin-bottom: 30px;
}

.login-form input[type="submit"]:hover,
.login-form input[type="submit"]:focus {
    background: #9e9e9e;
}

.login-form input[type="submit"]:active {
    background-color: #c4c4c4;
}

.login-form input[type="checkbox"] {
    display: none;
}

.login-form .remember-me {
    margin-bottom: 10px;
}

.login-form .remember-me span:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f0c8";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.login-form .remember-me input[type="checkbox"]:checked ~ span:before {
    content: "\f14a";
}

.login-form .remember-me span:before,
.login-form .forgot-password .far {
    width: 1em;
}

.login-form .secondary-link {
    align-self: center;
}

.login-form .time-zone-box {
	position: relative;
}

.login-form .time-zone-box select {
	width: 250px;
	margin: 2em 0;
}