

Glassmorphism Login Form using only HTML & CSS
source link: https://dev.to/shantanu_jana/glassmorphism-login-form-using-only-html-css-mia
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.


Glassmorphism Login Form using only HTML & CSS
Sep 14
・5 min read
In this article, I am going to show you how to create Glassmorphism Login Form using HTML and CSS code.
You can convert any simple design to a Glassmorphism design. For this, you need to change a little bit of code. First use background-color semi-transparent such as rgba (255,255,255,0.13)
.
Secondly, you need to use backdrop-filter: blur (10px)
to blur the background a bit. In the end, you need to use a border to enhance its beauty.
You can watch the live demo to see how it works. If you want to create Glassmorphism Login Form using HTML and CSS code then follow the tutorial below.
It is built just like a normal login form as you saw in the demo above. Two colorful circles have been created on web page.
Step 1: Design the web page
I designed the web page using a small amount of CSS code below. Here I have used black as the background color of the web page.
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: #080710;
}
Step 2: Create two colorful circles in the background
I have created two colorful circles on that page using the following HTML and CSS code. Although these two circles are not part of the design, I have created these two circles to design the background. However, in this case, you can use any other image.
This circle is 200 px in width and height and a 50% border radius has been used to make it completely round. position: made absolute so that it stays in the same place.
<div class="background">
<div class="shape"></div>
<div class="shape"></div>
</div>
.background{
width: 430px;
height: 520px;
position: absolute;
transform: translate(-50%,-50%);
left: 50%;
top: 50%;
}
.background .shape{
height: 200px;
width: 200px;
position: absolute;
border-radius: 50%;
}
Using the CSS codes below, I designed the two separately and used different colors. I used a blue gradient in the background of the first sphere. In the case of the second circle, I have used the gradient color of red.
.shape:first-child{
background: linear-gradient(
#1845ad,
#23a2f6
);
left: -80px;
top: -80px;
}
.shape:last-child{
background: linear-gradient(
to right,
#ff512f,
#f09819
);
right: -30px;
bottom: -80px;
}
Step 3: Create the basic structure of Glassmorphism Login Form
We have created the basic structure of this login form using the following HTML and CSS code. This GlassMorphism Effects Login Form has a width of 400px and a height of 520px
.
I have used background-color semi-transparent here. Border-radius: 10px
has been used to make the four somewhat round. If you watch the demo, you will understand that the colors in the background of this login form are a bit blurry. For this backdrop-filter: blur (10px)
has been used.
<form>
</form>
form{
height: 520px;
width: 400px;
background-color: rgba(255,255,255,0.13);
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
border-radius: 10px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.1);
box-shadow: 0 0 40px rgba(8,7,16,0.6);
padding: 50px 35px;
}
form *{
font-family: 'Poppins',sans-serif;
color: #ffffff;
letter-spacing: 0.5px;
outline: none;
border: none;
}
Step 4: Add headings to the form
Now using these codes I have created a heading in the form. I have used font-size: 32px
to increase the text size of that heading and text-align: center has been used to keep the text in the middle.
<h3>Login Here</h3>
form h3{
font-size: 32px;
font-weight: 500;
line-height: 42px;
text-align: center;
}
Step 5: Create input place to input
Using the codes below, I've created a place to input email IDs and passwords. For this, I have used the input function of HTML. I used 50px height of input space and used background-color semi-transparent.
<label for="username">Username</label>
<input type="text" placeholder="Email or Phone" id="username">
<label for="password">Password</label>
<input type="password" placeholder="Password" id="password">
label{
display: block;
margin-top: 30px;
font-size: 16px;
font-weight: 500;
}
input{
display: block;
height: 50px;
width: 100%;
background-color: rgba(255,255,255,0.07);
border-radius: 3px;
padding: 0 10px;
margin-top: 8px;
font-size: 14px;
font-weight: 300;
}
::placeholder{
color: #e5e5e5;
}
Step 6: Add the login button to the Glassmorphism Login Form
Now I have created a login button in the Glassmorphism Login Form. There is no specific size for this login button.
I have used padding to give this size. The background color of this button is completely white and the font-size: 18px
is used.
<button>Log In</button>
button{
margin-top: 50px;
width: 100%;
background-color: #ffffff;
color: #080710;
padding: 15px 0;
font-size: 18px;
font-weight: 600;
border-radius: 5px;
cursor: pointer;
}
Step 7: Create two social buttons
I have created two social media buttons at the end of it all. The two buttons are 150px in length and the background color is semi-transparent.
Here I used the icon which I used the CDN link of font-awesome to activate.
<div class="social">
<div class="go"><i class="fab fa-google"></i> Google</div>
<div class="fb"><i class="fab fa-facebook"></i> Facebook</div>
</div>
.social{
margin-top: 30px;
display: flex;
}
.social div{
width: 150px;
border-radius: 3px;
padding: 5px 10px 10px 5px;
background-color: rgba(255,255,255,0.27);
color: #eaf0fb;
text-align: center;
}
.social div:hover{
background-color: rgba(255,255,255,0.47);
}
.social .fb{
margin-left: 25px;
}
.social i{
margin-right: 4px;
}
I hope you have learned from this tutorial how I created this Glassmorphism Login Form design with the help of HTML and CSS.
You can visit my blog for more tutorials like this.
https://www.foolishdeveloper.com/
Recommend
-
15
神译局是36氪旗下编译团队,关注科技、商业、职场、生活等领域,重点介绍国外的新技术、新观点、新风向。 编者按:人的兴趣总是捉摸不定,设计趋势因此也会会钟摆一样摇摆不定。在Material Design为首的简约风格流行了几年之后,以...
-
7
Responses (2)
-
15
Getting startedAll you really need for this tutorial is a code editor and a web browser. You can also write this code using only editors, such as Codepen.0 reactionsThe element that we're going to build w...
-
12
UI Design TutorialNew Glassmorphism? How to Create Neon Glass Effect UI DesignIf you like to create modern User Interfaces, see how to design with this style.Gla...
-
12
-
4
-
20
🎬How To Make Login & Registration Form | HTML CSS & Vanilla JavaScript✨ Jul 1 ・1 min read...
-
12
How to create Glassmorphism: Episode 1, Design seriesWelcome to episode 1 of my learning series- I will be giving a step by step tutorial on how to create a particular Design trend in few simple steps. I will b...
-
7
-
9
Robson Muniz Posted on Mar 17
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK