Web Code
Login
Sign Up
HTML
Loging Form
Sign In
Sign in with Google
Sign in with Facebook
or
User Name
Email Id
Password
Forgot your password?
I agree to the
Privacy Policy
and
Terms of Service
Sign In
No account?
Login
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: linear-gradient(135deg, rgba(1, 214, 118, 0.4) 0%, rgb(20 21 35) 40%); padding: 30px 40px; max-width: 500px; border-radius: 20px; width: 500px; position: relative; } .form_account h4 { text-align: center; color: #fff; font-size: 22px; 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; } .Facebook_btn { background: #1877f2; color: #fff; } .or_line { position: relative; text-align: center; margin: 5px 0; } .or_line:before { content: ''; height: 1px; position: absolute; width: 50%; background: linear-gradient(to left, transparent, #A9A9CA); right: 0px; top: 13px; } .or_line:after { content: ''; height: 1px; position: absolute; width: 50%; background: linear-gradient(to right, transparent, #A9A9CA); left: 0px; top: 13px; } .or_line span { position: relative; z-index: 1; padding: 0 2px; background: #141523; color: #fff; } .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: #A9A9CA; } .icon_set_input input { width: 100%; padding: 10px; border: 0; border-radius: 5px; font-size: 15px; padding-left: 35px; color: #ffffff; background: #2f3043; } .Forgot_password { text-decoration: none; color: #01D676; display: block; text-align: right; } .submit_button { background: #01D676; width: 100%; padding: 10px; border: 0; font-size: 16px; font-weight: 600; color: #161616; border-radius: 5px; margin: 10px 0; cursor: pointer; } .account-text { text-align: center; color: #fff; } .account-text a { color: #01d676; text-decoration: none; } .form_account .form-check label { color: #fff; font-size: 12px; } .form_account .form-check label a { color: #1877f2; text-decoration: none; }
JS
Output