diff --git a/src/App.jsx b/src/App.jsx
index 0586e03..09034cd 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -9,6 +9,7 @@ import Sponsor from "./components/Sponsor/Sponsor";
import { NavBar } from "./components/Nav/NavBar";
import Glimpse from "./components/Glimpse/Glimpse";
import Signup from "./components/Signup/Signup";
+import Registration from "./components/registration/registration";
import { render } from "@testing-library/react";
const App = () => {
@@ -24,6 +25,7 @@ const App = () => {
{/* */}
+
);
diff --git a/src/assets/regisbg.svg b/src/assets/regisbg.svg
new file mode 100644
index 0000000..b2c9998
--- /dev/null
+++ b/src/assets/regisbg.svg
@@ -0,0 +1,63 @@
+
diff --git a/src/assets/registrationbg.png b/src/assets/registrationbg.png
new file mode 100644
index 0000000..d6c0054
Binary files /dev/null and b/src/assets/registrationbg.png differ
diff --git a/src/components/registration/registration.css b/src/components/registration/registration.css
new file mode 100644
index 0000000..96db12f
--- /dev/null
+++ b/src/components/registration/registration.css
@@ -0,0 +1,90 @@
+.registration{
+ background: url('../../assets/bgprakarsh.png');
+ height: fit-content;
+ /* width: max-content; */
+ background-size: contain;
+ background-repeat: no-repeat;
+
+ /* flex-wrap: wrap; */
+ /* flex-direction: column; */
+
+}
+
+.rhead h1{
+ font-size: 3rem;
+ font-family: 'valorant';
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient( 180deg,rgba(128, 128, 128) 1.25%, rgba(128, 128, 128)1.26%, rgba(255, 255, 255) 1.27%, rgba(255,255,255,0.4) 69.7%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ letter-spacing: 10px;
+
+}
+.rcontent{
+ padding: 20px;
+ margin: 50px;
+ display: grid;
+ grid-template-columns: 1fr ;
+ /* grid-auto-rows: 300px; */
+
+}
+
+.first{
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+}
+
+.second{
+ display: grid;
+ grid-template-columns: 1fr ;
+ justify-self: center;
+ grid-column-start: 1;
+
+}
+
+.try{
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ /* gap: 1px; */
+}
+
+.pad{
+ margin: 20px;
+}
+.try-2{
+
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+}
+.r-rect{
+ width: 500px;
+ height: 50px;
+ border: solid rgb(1, 209, 105);
+ border-radius: 5px;
+ position: relative;
+ background-color: #1d2a2e;
+ bottom: 58px;
+ z-index: 0;
+ right: 11px;
+}
+
+
+/* .inputbox input{
+ width: 100%;
+ padding: 10px;
+ height: 52px;
+ border: 3px solid rgba(106, 15, 233); ;
+ border-radius: 5px;
+ background-color: transparent;
+ outline: none;
+ color: #fff;
+ font-size: 1.4em;
+ position: relative;
+ bottom: 118px;
+ right: 21px;
+
+} */
\ No newline at end of file
diff --git a/src/components/registration/registration.jsx b/src/components/registration/registration.jsx
new file mode 100644
index 0000000..edc9860
--- /dev/null
+++ b/src/components/registration/registration.jsx
@@ -0,0 +1,76 @@
+import React from 'react'
+import './registration.css'
+
+const registration = () => {
+ return (
+
+
+
+
+
Registration
+
+
+
+
+
+
+
+
+ )
+}
+
+export default registration
\ No newline at end of file