.panel.login {
	position: fixed;
	top: 50px;
	bottom: 33px;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: space-between;
	font-size: large;

}

.login-logo {
	height: 80%;
	margin-top: 20%;
}

.login-form {
	padding: 20px;
	background-color: #fff;
	border-color: #d0d0d0;
	border-width: 1px;
	border-style: solid;
	text-align: center;
	padding-top: 100px;
	margin: 0 auto;
	max-width: 333px;
	margin-top: 20%;
	position: relative;
}

.login-logo img {
	width: 200px;
	height: 200px;
}

.login-right {
	width: 50%;
}

.login-left {
    margin-top: 10%;
    margin-left: 10%;
}

span.login-title {
	font-size: 36px;
}

input.username {
	background-image: url("../img/username.svg");
	background-size: 28px;
	background-repeat: no-repeat;
	background-position: right;
}

input.pin {
	background-image: url("../img/password.svg");
	background-size: 42px;
	background-repeat: no-repeat;
	background-position-x: 104%;
}

button.login_btn {
	height: 60px;
	width: 150px;
	background-color: rgb(229, 122, 27);
	border: none;
	line-height: normal;
	font: inherit;
	margin: 0;
	color: snow;
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 17px;
	box-sizing: border-box;
	padding: 0;
	bottom: 20px;
	right: 20px;
}span.login_state {
	position: absolute;
	width: 100%;
	right: 0;
	top: 30px;
	left: 0;
	text-align: center;
	color: red;
	font-size: 20px;
}
 