diff --git a/public/index.html b/public/index.html
index 23034da..9088606 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,90 +1,23 @@
-
+
+
-
-
Don't have an account?
-
+
+ Meine Schic-App
+
+
-
-
-
-
-
\ No newline at end of file
diff --git a/public/login.html b/public/login.html
new file mode 100644
index 0000000..1695c55
--- /dev/null
+++ b/public/login.html
@@ -0,0 +1,26 @@
+
+
+
+
+
Login - Schic-App
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/css/styles.css b/public/login.js
similarity index 100%
rename from public/css/styles.css
rename to public/login.js
diff --git a/public/styles.css b/public/styles.css
new file mode 100644
index 0000000..d1db161
--- /dev/null
+++ b/public/styles.css
@@ -0,0 +1,65 @@
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+ background-color: #f4f6f8;
+ color: #333;
+}
+
+header {
+ background-color: #1e293b;
+ color: white;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+}
+
+main {
+ padding: 3rem;
+ text-align: center;
+}
+
+.container {
+ max-width: 400px;
+ margin: 100px auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 10px 25px rgba(0,0,0,0.1);
+ text-align: center;
+}
+
+input {
+ width: 100%;
+ padding: 0.8rem;
+ margin: 0.5rem 0;
+ border-radius: 4px;
+ border: 1px solid #ccc;
+}
+
+button {
+ width: 100%;
+ padding: 0.8rem;
+ margin-top: 1rem;
+ border: none;
+ background-color: #2563eb;
+ color: white;
+ border-radius: 4px;
+ cursor: pointer;
+ font-weight: bold;
+}
+
+button:hover {
+ background-color: #1d4ed8;
+}
+
+.error {
+ color: red;
+ margin-top: 1rem;
+}
\ No newline at end of file