* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
	width: 100%;
    height: 100%;
    display: flex;
    font-family: 'Lato', sans-serif;
}

#sidebar {
    width: 183px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-grow: 1;
	justify-content: flex-start;
}

#login-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
    background-color: white;
}

#login-box {
    width: 460px;
    padding: 20px;
    text-align: left;
}

#login-greeting {
	color: #000;
	font-family: Lato;
	font-weight: 700;
	font-size: 36px;
	line-height: 30px;
    text-align: center;
}

#login-message {
	margin-top: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #B7B7B7;
	margin-bottom: 20px;
    text-align: center;
}

.field-label {
	size: 16px;
	line-height: 18px;
}

.signInField {
	margin-top: 15px;
	text-align: left;
    margin-bottom: 8px;
    position: relative;
}

.signInField input {
	border: 1px solid #A7B2B9;
	border-radius: 4px;
	height: 38px;
	padding: 10px 12px;
}

.userInfo {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    font-size: 16px;
}

.imgIdentifier {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.field-error{
	color: #dc3545;
	font-weight: 400;
	background: #fff5f5;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 8px 12px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.4;
}

.submitButton {
	margin-top: 30px;
	text-align:center;
	border-radius: 4px;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #00A755;
    color: white;
    cursor: pointer;
    border: none;
	line-height: 18px;
    font-size: 16px;
	font-weight: 700;
}

.submitButton:hover {
    background-color: #008243;
}
