Web Code
Login
Sign Up
HTML
Loging Form
Sign Up
Already a member?
Login
First Name
*
Last Name
*
Phone No.
*
Email Id
*
Password
*
Confirm Password
*
I have read and agreed to the
Terms & Conditions
&
Privacy Policy
.
Create Account
CSS
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100%; background: #07161d; } .form_sigin_up { background: #fff; max-width: 700px; padding: 30px; position: relative; z-index: 1; } .form_sigin_up:before { content:''; background-image: url(https://themeelements.com/img/themeelement-logo.png); position: absolute; width: 100%; height: 100%; z-index:-1; background-size: 10%; background-repeat: repeat; top: 0; left: 0; opacity: .03; } .form_sigin_up p { margin-bottom: 20px; } .link_bold { color: #991b37; font-weight: 700; } .form_sigin_up .form_control { padding: 12px 10px; line-height: 20px; border: 1px solid #d2cfcf; border-radius: 6px; margin-bottom: 13px; width: 100%; } .form_sigin_up label { display: block; font-size: 16px; font-weight: 500; margin-bottom: 3px; } .theme-btn.style-one { font-weight: 500; color: #fff; border: none; font-size: 16px; padding: 12px 20px; line-height: 16px; border-radius: 5px; transition: all 0.3sease-in; background-color: #13172b; } .form_sigin_up input:focus-visible { border: none; outline: none; }
JS
Output