diff --git a/index.html b/index.html
new file mode 100644
index 0000000..9dfdf77
--- /dev/null
+++ b/index.html
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+ Register
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..c2a0ed3
--- /dev/null
+++ b/script.js
@@ -0,0 +1,20 @@
+document.getElementById("nxt-btn").addEventListener('click' ,function(){
+ if(document.getElementById('personal-datail').checkValidity())
+ {
+ document.getElementById('page1').classList.remove('active');
+ document.getElementById('page2').classList.add('active');
+ document.getElementById('prv-btn').style.display = 'block';
+
+ }
+ else{
+ document.getElementById('personal-detail').reportValidity();
+ }
+
+});
+
+document.getElementById('prv-btn').addEventListener('click',function()
+{
+ document.getElementById('page2').classList.remove('active');
+ document.getElementById('page1').classList.add('active');
+ document.getElementById('prv-btn').style.display = 'none';
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..c1a7779
--- /dev/null
+++ b/style.css
@@ -0,0 +1,76 @@
+body{
+ margin: 0;padding: 0;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ box-sizing: border-box;
+ display: flex;
+ flex-direction: column;
+ gap: 10rem;
+ background-image: linear-gradient(#FAF6E3,#D8DBBD,#B59F78);
+ height: 100vh;
+ width: 100vw;
+}
+input{
+ border: 1px solid black;
+ border-radius: 8px;
+ padding: 6px;
+}
+input::placeholder{
+ font-size: 12px;
+ color: black;
+}
+.form-Container,
+.personal-detail,
+.step2{
+ margin: 0 auto;
+ width: 75vw;
+}
+
+
+.form-Container legend{
+ font-size:16px;
+ font-weight: bold;
+}
+#gender-id{
+ font-weight: bold;
+}
+#gender-id label{
+ font-weight: normal;
+}
+
+#btn-div{
+ padding: 20px;
+ display: flex;
+ justify-content: space-evenly;
+}
+#btn-div button{
+ cursor: pointer;
+ border: none;
+ padding: 8px;
+ width: 5rem;
+ border-radius: 10px;
+ background-color: rgb(97, 97, 211);
+ color: white;
+ bottom: 0;
+
+
+}
+#btn-div button:hover{
+ background-color: #fff;
+ color: rgb(17, 17, 17);
+ font-size: 16px;
+
+}
+
+.step2
+{
+ display: none;
+
+}
+.step2.active
+{
+ display: inline;
+}
+#prv-btn,#review-submit
+{
+ display: none;
+}
\ No newline at end of file