Login page structure and style

First version with select instead of autocomplete.
diff --git a/css/basic.css b/css/basic.css
new file mode 100644
index 0000000..4a80ca8
--- /dev/null
+++ b/css/basic.css
@@ -0,0 +1,20 @@
+body {
+	font-size: 24px;
+	font-family: Helvetica;
+	line-height: 1em;
+	
+	background-image: url('https://images.unsplash.com/photo-1428196457394-f0c4aec5f574?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80');
+	background-size: cover;
+}
+
+#outter-container {
+	position: absolute;
+	top: 20%;
+	margin: 5%;
+	width: 80%;
+}
+
+#inner-container {
+	background-color: rgba(255,255,255, 0.8);
+	padding: 5%;
+}
\ No newline at end of file