:root {
	--background-color: #f4f4f4;
	--black-color: #272727;
	--pink-color: #cb3272;
	--yellow-color: #f5bd32;
	--blue-color: #0069f9;
	--dark-blue-color: #032f6a;
	--red-color: #e20941;
	--gray-color:  #c3c3c3;
}
html {
	height: 100%;
	min-height: 100%;
}
body {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	height: 100%;
	min-height: 100%;
}
.container {
	width:  100%;
	min-height: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-blend-mode: color-burn;
	background: linear-gradient(rgb(130, 207, 255), transparent), linear-gradient(to left top, rgb(175, 31, 104), transparent), linear-gradient(to right top, rgb(6, 101, 168), transparent);
}
.users.form {
	position: relative;
	width:  500px;
	min-height: 400px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 50px;
}
.users.form .logo {
	display: block;
	text-align: center;
	padding: 10px 0 20px 0;
}

.users.form .logo img {
	width: 210px;
	height: auto;
}
.users.form h2 {
	width: 100%;
	text-align: left;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 30px;
}
.users.form form {
	width: 100%;
}
.users.form .input {
	margin-bottom: 25px;
}
.users.form label {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 5px;
}
.users.form form input[type="text"],
.users.form form input[type="password"] {
	width: 400px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.29) 0px 1px 2px inset, rgb(255, 255, 255) 0px 1px 1px, rgb(255, 255, 255) 0px 1px 0px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(221, 221, 221);
	padding: 0px 10px;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
	outline: none;
	font-size: 14px;
	line-height: 30px;
	color: #000;
	background: #fff;
	font-family: Arial;
	font-weight: 400;
}
.users.form form .box.error input {
	border-color: #f00;
}
.users.form form input:focus {
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
}
.users.form .submit {
	margin-top: 40px;
	margin-bottom: 15px;
	text-align: left;
}
.users.form input[type="submit"] {
	width: 108px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    font-family: Arial;
    color: rgb(88 ,145, 239);
    box-sizing: border-box;
    padding: 0 15px;
    background-color: #fff;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(88, 145, 239);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    border-radius: 25px;
    outline: none;
}
.users.form input[type="submit"]:first-letter {
	text-transform: uppercase;
}
.users.form input[type="submit"]:hover {
	background-color: rgb(250, 250, 250);
    color: rgb(88, 145, 239);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px;
    border-color: rgb(88, 145, 239);
}
.users.form select {
	width: 100%;
	color: rgb(34, 34, 34);
    font-size: 14px;
    font-weight: 400;
    font-family: Arial;
    padding: 0px 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(189, 189, 189);
    cursor: pointer;
    height: 32px;
    line-height: 30px;
    box-sizing: border-box;
}
