html {
	box-sizing: border-box;
}

*, :after, :before {
	box-sizing: inherit;
}

body {
	margin: 0;
	background: #000;
	line-height: 1.25;
	overflow: hidden;
}

body, input {
	font-family: 'Titillium Web', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
}

p {
	margin: 0;
}

input[type="text"], input[type="password"] {
	border: 1px solid #606060;
	height: 26px;
	width: 200px;
	padding: 0 5px;
	border-radius: 3px;
	background: #303030;
}
input[type="text"]:focus, input[type="password"]:focus {
	outline: none;
}

input[type="submit"], input[type="button"], button {
	width: auto;
	height: 26px;
	border: none;
	padding: 0 10px;
	border-radius: 4px;
	background: #404040;
	cursor: pointer;
}
input:disabled, button:disabled {
	opacity: .5;
	cursor: default;
}
