diff --git a/package.json b/package.json
index 279c2e93ac..0ce2d6ea0a 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,8 @@
"@testing-library/user-event": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
- "react-router-dom": "^5.2.0",
- "react-scripts": "3.4.1"
+ "react-router-dom": "^6.4.3",
+ "react-scripts": "^3.4.1"
},
"scripts": {
"start": "react-scripts start",
diff --git a/src/App.css b/src/App.css
index 379ff2d417..2f03dcaf06 100644
--- a/src/App.css
+++ b/src/App.css
@@ -34,11 +34,71 @@
font-size: 100px;
}
-.sign-up {
+.sign-up-card {
background-image: url('/images/img-8.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
+ height: 90vh;
+padding: 2rem;
font-size: 100px;
}
+
+.sign-up-form {
+ border-radius: 7px;
+ border: 1px solid grey;
+ max-width: 600px;
+ width: 30%;
+ margin: 0 auto;
+ background-color: white;
+ padding: 20px;
+ box-shadow: 0 2px 4px 4px rgba(0,0,0,0.09);
+ /* margin-top: 2rem; */
+}
+
+.sign-up-form h2 {
+ font-size: 30px;
+ color:black;
+ font-weight: 500;
+ margin-bottom: 30px;
+ text-align: center;
+}
+
+.each-input {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+ margin-bottom: 20px;
+ font-weight: 100;
+}
+
+.each-input label {
+ font-size: 18px;
+ color: black;
+}
+
+.each-input input {
+ font-size: 20px;
+ padding: 10px;
+ border-radius: 6px;
+ border: 1px solid grey;
+
+}
+
+.submit-button button{
+ background-color:black;
+ color: white;
+ border-radius: 40rem;
+ width: 60%;
+ margin: 0 auto;
+ font-size: 25px;
+ padding: 8px;
+ text-align: center;
+ cursor: pointer;
+}
+
+.submit-button {
+ text-align: center;
+ margin: 0 auto;
+}
\ No newline at end of file
diff --git a/src/App.js b/src/App.js
index ee4ec23bdf..27493626be 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,24 +1,23 @@
-import React from 'react';
-import Navbar from './components/Navbar';
-import './App.css';
-import Home from './components/pages/Home';
-import { BrowserRouter as Router, Switch, Route } from 'react-router-dom';
-import Services from './components/pages/Services';
-import Products from './components/pages/Products';
-import SignUp from './components/pages/SignUp';
+import React from "react";
+import Navbar from "./components/Navbar";
+import "./App.css";
+import Services from "./components/pages/Services";
+import Products from "./components/pages/Products";
+import SignUp from "./components/pages/SignUp";
+import { Routes, Route } from "react-router-dom";
+import Home from "./components/pages/Home";
function App() {
return (
<>
-