diff --git a/client/src/Components/Forms/forms.css b/client/src/Components/Forms/forms.css
new file mode 100644
index 0000000000000000000000000000000000000000..66dfd2adcee209944de8fa241e92171e36d77ec8
--- /dev/null
+++ b/client/src/Components/Forms/forms.css
@@ -0,0 +1,80 @@
+input[type=text]{
+    width: 200px;
+    padding: 12px 20px;
+    margin: 8px 0;
+    display: inline-block;
+    border: 1px solid #ccc;
+    border-radius: 4px;
+    box-sizing: border-box;
+  }
+  
+  input[type=submit] {
+    width: 100px;
+    background-color: #4CAF50;
+    color: white;
+    padding: 17px 20px;
+   margin-left: 200px;
+    border: none;
+    border-radius: 4px;
+    cursor: pointer;
+    font-size: 15px;
+    font-weight: bold;
+  }
+  
+  input[type=submit]:hover {
+    background-color: red;
+  }
+  .dropbtn {
+    background-color: #4CAF50;
+    color: white;
+    padding: 12px;
+    font-size: 14px;
+    border: none;
+    cursor: pointer;
+  }
+  
+  .dropdown {
+    position: relative;
+    display: inline-block;
+  }
+  
+  .dropdown-content {
+    display: none;
+    position: absolute;
+    background-color: #f9f9f9;
+    min-width: 160px;
+    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+    z-index: 1;
+  }
+  
+  .dropdown-content a {
+    color: black;
+    padding: 12px 16px;
+    text-decoration: none;
+    display: block;
+  }
+  
+  .dropdown-content a:hover {background-color: #f1f1f1}
+  
+  .dropdown:hover .dropdown-content {
+    display: block;
+  }
+  
+  .dropdown:hover .dropbtn {
+    background-color: #3e8e41;
+  }
+  .b1{
+    background-color:rgb(20, 150, 78);
+    color: white;
+    padding: 12px;
+    font-size: 14px;
+    border: none;
+    cursor: pointer;
+    width: 200px;
+    height: 60px;
+    margin-left: 2%;
+  }
+  .b1:hover{
+    background-color: red;
+   
+  }
\ No newline at end of file