diff --git a/.idea/Webshop.iml b/.idea/Webshop.iml
index 533a2cb..8b332b7 100644
--- a/.idea/Webshop.iml
+++ b/.idea/Webshop.iml
@@ -6,5 +6,6 @@
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index e1cfb03..9687cac 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -6,11 +6,28 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml
index 9da3653..93218c2 100644
--- a/.idea/jsLibraryMappings.xml
+++ b/.idea/jsLibraryMappings.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/public/login/LoginBackround.jpg b/public/login/LoginBackround.jpg
new file mode 100644
index 0000000..087be46
Binary files /dev/null and b/public/login/LoginBackround.jpg differ
diff --git a/public/login/index.html b/public/login/index.html
index f87b425..52e874a 100644
--- a/public/login/index.html
+++ b/public/login/index.html
@@ -1,24 +1,39 @@
-
+
- Login
+
+
+
+
+ Loging
+
-
-
-
-
-
-
+
diff --git a/public/login/style.css b/public/login/style.css
new file mode 100644
index 0000000..d3c6d9d
--- /dev/null
+++ b/public/login/style.css
@@ -0,0 +1,103 @@
+{
+ margin: 0
+;
+ padding: 0
+;
+ box-sizing: border-box
+;
+ font-family: "Poppins", sans-serif
+;
+}
+
+body {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 100vh;
+ background: url("LoginBackround.jpg");
+}
+
+.wrapper {
+ width: 420px;
+ background: lightgrey;
+ color: #111111;
+ border-radius: 15px;
+ padding: 45px 25px;
+}
+
+.wrapper h1 {
+ font-size: 36px;
+ text-align: center;
+ margin-bottom: 40px;
+}
+
+.wrapper .input-box {
+ position: relative;
+ width: 89%;
+ height: 50px;
+ margin: 20px 1px;
+}
+
+.input-box input {
+ width: 100%;
+ height: 100%;
+ outline: none;
+ border: 2px solid rgba(255, 255, 255, .2);
+ border-radius: 40px;
+ font-size: 16px;
+ padding: 0 20px;
+}
+
+.wrapper .input-box input::placeholder {
+ color: #111111;
+}
+
+.input-box i {
+ position: absolute;
+ left: 390px;
+ top: 50%;
+ transform: translateY(-50%);
+ font-size: 20px;
+ margin-top: 4px;
+}
+
+.wrapper .remember-forgot {
+ display: flex;
+ justify-content: space-between;
+ font-size: 16.5px;
+ margin: 10px 20px;
+}
+
+.remember-forgot a {
+ color: #111111;
+ text-decoration: none;
+}
+
+.remember-forgot a:hover {
+ text-decoration: underline;
+}
+
+.wrapper .register-link {
+ font-size: 14px;
+ text-align: center;
+}
+
+.register-link a {
+ color: #111111;
+ text-decoration: none;
+ margin: -1px 6px;
+}
+
+.register-link a:hover {
+ text-decoration: underline;
+}
+
+.wrapper .btn {
+ width: 100%;
+ height: 50px;
+ border: none;
+ outline: none;
+ margin-top: 40px;
+ border-radius: 40px;
+ cursor: pointer;
+}