Web Code
Login
Sign Up
HTML
Loging Form
Create account
Already a member?
Login
Sign in with Google
or
Enter your display name
Enter your email address
Password
Forgot your password?
By signing up, you are agreeing to our
Privacy Policy
and
Terms of Service
Sign In
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_account { background: #3F51B5; padding: 30px 40px; max-width: 500px; border-radius: 20px; width: 500px; position: relative; } .form_account h4 { color: #fff; font-size: 25px; margin-bottom: 20px; } .google_btn { display: flex; align-items: center; justify-content: center; position: relative; background: #fff; padding: 8px; width: 100%; border: 0; margin: 10px 0; border-radius: 5px; font-size: 18px; cursor: pointer; } .or_line { position: relative; margin: 5px 0; } .or_line:after { content: ''; height: 1px; position: absolute; width: 100%; background: linear-gradient(to right, #A9A9CA, transparent); left: 25px; top: 13px; } .or_line span { position: relative; z-index: 1; padding: 0 2px; color: #fff; font-size: 17px; text-transform: capitalize; } .form_account .form-group { margin-bottom: 15px } .form_account .form-group label { color: #fff; margin-bottom: 5px; } .icon_set_input { position: relative; } .icon_set_input i { position: absolute; font-size: 20px; top: 10px; left: 8px; color: #000; } .icon_set_input input { width: 100%; padding: 10px; border: 0; border-radius: 5px; font-size: 15px; padding-left: 35px; color: #000; background: #f2f3f5; } .Forgot_password { text-decoration: none; color: #000000; display: block; text-align: right; } .submit_button { background: #000000; width: 100%; padding: 10px; border: 0; font-size: 16px; font-weight: 600; color: #fff; border-radius: 5px; margin: 10px 0; cursor: pointer; } .account-text { color: #fff; } .account-text a { color: #000000; text-decoration: none; } .form_account .form-check label { color: #fff; font-size: 12px; } .form_account .form-check label a { color: #000000; text-decoration: none; }
JS
Output