mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
175 lines
3.2 KiB
HTML
175 lines
3.2 KiB
HTML
<div class="card-container">
|
|
<div class="circle1"></div>
|
|
<div class="circle2"></div>
|
|
<div class="container">
|
|
<div class="log-card">
|
|
<p class="heading">Welcome Back</p>
|
|
<p>We are you to have you Again</p>
|
|
|
|
<div class="input-group">
|
|
<p class="text">Username</p>
|
|
<input class="input" type="username" placeholder="For Ex: Jayakrishna007">
|
|
<p class="text">Password</p>
|
|
<input class="input" type="password" placeholder="Enter Password">
|
|
</div>
|
|
|
|
<div class="password-group">
|
|
<div class="checkbox-group">
|
|
<input type="checkbox">
|
|
<label class="label">Remember Me</label>
|
|
</div>
|
|
<a href="" class="forget-password">Forget Password</a>
|
|
</div>
|
|
|
|
<button class="btn">Sign In</button>
|
|
|
|
<p class="no-account">Don't Have an Account ?<a class="link"> Sign Up</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by IWhat1 - Tags: neumorphism, skeuomorphism, glassmorphism, login, card, login form, cool card, card animation */
|
|
.card-container {
|
|
width: 350px;
|
|
height: 440px;
|
|
background: transparent;
|
|
position: relative;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.circle1 {
|
|
height: 80px;
|
|
width: 80px;
|
|
border-radius: 50%;
|
|
background-color: #2879f3;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.circle2 {
|
|
height: 80px;
|
|
width: 80px;
|
|
border-radius: 50%;
|
|
background-color: #f37e10;
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.log-card {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
position: absolute;
|
|
width: 300px;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
|
|
backdrop-filter: blur(5px);
|
|
padding: 20px;
|
|
}
|
|
|
|
.heading {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.para {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.text {
|
|
margin-top: 15px;
|
|
margin-bottom: 0;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: lightslategray;
|
|
}
|
|
|
|
.input-group {
|
|
margin-top: 10px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.input {
|
|
box-sizing: border-box;
|
|
margin-bottom: 5px;
|
|
width: 100%;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
background-color: transparent;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
color: #2879f3;
|
|
}
|
|
|
|
.input:hover {
|
|
color: #2879f3;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.password-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.checkbox-group {
|
|
color: black;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.forget-password {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #2879f3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.forget-password:hover {
|
|
text-decoration: underline;
|
|
color: #f37e10;
|
|
}
|
|
|
|
.btn {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
padding: 8px 16px;
|
|
border: none;
|
|
background-color: #2879f3;
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #0653c7;
|
|
}
|
|
|
|
.no-account {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.link {
|
|
font-weight: 800;
|
|
color: #2879f3;
|
|
}
|
|
|
|
.link:hover {
|
|
color: #f37e10;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|