This is an example of a neomorphic login web form with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The colors used in the form are predefined as $color-red: #AE1100, $color-bg: #EBECF0, $color-shadow: #BABECC, and $color-white: #FFF. The form is given a background color of $color-bg. The body and button sections are given the styles of font-family as 'Montserrat', sans-serif, letter-spacing as -0.2px, and font-size as 16px. The login button is given a font size as 16px and a padding as 16px, and a background color as $color-bg, and a text shadow as 1px 1px 0 $color-white. The input fields are given a box-shadow of inset 2px 2px 5px $color-shadow, inset -5px -5px 10px $color-white, and a transition value as all 0.2s ease-in-out. The login button is given a cursor style as pointer to get the hand cursor effect in a hover event, font-weight as 600, color as #61677C, transition as all 0.2s ease-in-out, and box-shadow as -5px -5px 20px $color-white, 5px 5px 20px $color-shadow. In a focus event, the box-shadow of the input fields turns to inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white. In hover and active events, the login button takes the styles of box shadow as -2px -2px 5px $color-white, 2px 2px 5px $color-shadow, and inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white. Source: https://codepen.io/swapnet/pen/QWwPVwE
This is an example of a simple bootstrap login form, designed using HTML, CSS, and Bootstrap framework 4. The images are imported to the code with their URLs. The body is given the styles of background as rgba(241, 242, 246,1.0), and font-family as sans-serif. The signup section is given a style set of width as 1100px, and height as 500px, background as white, and box-shadow as 0px 0px 30px 20px rgba(0,0,0,.12). The color of the card header is set as color: rgba(164, 176, 190,1.0). The icon at the top is given the styles of height as 75px, width as 75px, line-height as 75px, border as 2px solid red, and border-radius as 50% to get the circle shape. The input field has the styles of width as 85%, padding-left as 20px, color as rgba(47, 53, 66,1.0), and font-size as 20px, whereas the Enter button is given the styles of height as 40px, width as 230px, border-radius as 75px, margin as 20px auto, background as rgba(255, 107, 129,1.0), and font color as white. Source: https://codepen.io/rickyeckhardt/full/dyoyooe
This is an example of a password input form with a light beam animation, designed using CSS, HTML, JavaScript, and Bootstrap framework 4. JavaScript functions have been used to implement the animation in a clicked event on the eyeball icon. The colors are predefined as --bgColor: white, --inputColor: black, --outlineColor: dodgerblue, and --beamColor: yellow. The body is given a background color as var(--bgColor), whereas the form is given a transform value as translate3d(0,0,0). The sign-in button has the styles of font-size as 1.5rem, font-family as monospace, and color as var(--inputColor), which takes an outline style of 3px solid var(--outlineColor), in a focus event. The user name and password are given a font color as black. The cursor style for the button and eyeball is set as pointer to get the hand cursor effect. The eyeball is given the size of 1.25rem, and a transform style of translateY(-50%). In a focus event on the eyeball, the background color of the form turns to black, revealing the password value and a light beam is displayed in a polygon(100% 50%, 100% 50%, 0 0, 0 100%) path, with the beam color as yellow. Source: https://codepen.io/hexagoncircle/pen/zYxzQqa
This is an example of a login form with hover animations, designed using CSS, HTML, and bootstrap framework 4. The fonts and icons are imported to the code with their URLs. The values and font sizes are predefined as color-primary: mediumslateblue, color-secondary: black, color-tertiary: hotpink, base-border-radius: 0.25rem, ease: cubic-bezier(0.075, 0.82, 0.165, 1), duration: 350ms, font-family: 'Roboto', sans-serif, and font-size: 1.25rem. The laels are given the styles of font-size as calc(var(--font-size) / 1.65), font-weight as 700, text-transform as uppercase to automatically convert the text to uppercase, and letter-spacing as 0.065rem. The body of the form is given a style set of padding as var(space-m), font-size as var(font-size), font-family as var(font-family), line-height as 1.2, and background-color as var(color-tertiary). The header of the form is given the styles of font-weight as 700, and font-size as calc(var(--font-size) * 1.5). The form is given a transform value of skewY(-5deg) translateY(10%) scale(0.94). In a hover event, the form takes a transform of scale(1.0001) to get the folded animation. Source: https://codepen.io/hexagoncircle/pen/XWJGQqy
This is a template of a sign-in web form designed using HTML, and CSS. The bootstrap styles, icons, fonts, and images are imported to the form with their URLs. The form is given a font-family of 'Numans', sans-serif whereas the card has the styles of height as 370px, margin-top as auto, margin-bottom as auto; width as 400px, and background-color as rgba(0,0,0,0.5) !important. The social media icons are given the styles of font-size as 60px, margin-left as 10px, and color as #FFC312. In a hover event, the color of social media icons becomes white and the cursor becomes pointer to get the hand cursor effect. The login button has an initial style set of color as black, background-color as #FFC312, and width as 100px which also turns into the background color white, in a hover event. The links are given a margin-left style of 4px and the color white.
This is another example of a signup/sign-in form where the sign in and signup options have been given using toggle buttons, designed using HTML, CSS, and JavaScript. Bootstrap library and bootstrap style sheets have been imported to the code. JavaScript functions have been used to hide and show the password. Sign in using social media accounts function has been implemented with their respective links imported. Cursor style is set as pointer to display the cursor as a hand whereas text-transform style is set as uppercase for the headings to convert the text to uppercase automatically. The list has a style set of width: 50%, position: relative, float: left, text-align: center, background: #D2D8D8, line-height: 72px, height: 72px, font-weight: 700, font-size: 16px, and color: #809191 whereas the subtitle is given the styles of display: block, font-weight: 400, font-size: 15px, color: #888, and line-height: 48px. In a focused event, the login and signup tabs get an outline border of outline: dotted 1px. Source: https://codepen.io/arunslite/pen/dojLOg