169 lines
3.1 KiB
CSS
169 lines
3.1 KiB
CSS
body
|
|
{
|
|
font-family: Poppins, Arial, sans-serif;
|
|
background: linear-gradient(135deg, #d9a7ff, #fbc2eb, #a1c4fd);
|
|
min-height: 100vh;
|
|
overflow: hidden;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Background animation circles */
|
|
.bg-animated .bg-circle {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
filter: blur(70px);
|
|
animation: float 7s infinite ease-in-out;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.one {
|
|
top: 10%;
|
|
left: 5%;
|
|
width: 220px;
|
|
height: 220px;
|
|
background: rgba(255,255,255,0.5);
|
|
}
|
|
.two {
|
|
bottom: 10%;
|
|
right: 5%;
|
|
width: 300px;
|
|
height: 300px;
|
|
background: rgba(255,180,220,0.5);
|
|
animation-delay: 1.3s;
|
|
}
|
|
.three {
|
|
top: 60%;
|
|
left: 50%;
|
|
width: 200px;
|
|
height: 200px;
|
|
background: rgba(150,110,255,0.5);
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-25px); }
|
|
}
|
|
|
|
/* Card */
|
|
.login-card {
|
|
background: rgba(255, 255, 255, 0.35);
|
|
backdrop-filter: blur(20px);
|
|
padding: 35px;
|
|
max-width: 420px;
|
|
width: 100%;
|
|
border-radius: 25px;
|
|
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
|
|
border: 1px solid rgba(255,255,255,0.4);
|
|
position: relative;
|
|
}
|
|
|
|
/* Icon */
|
|
.icon-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.icon-circle {
|
|
background: linear-gradient(135deg, #7928ff, #ff0080);
|
|
padding: 22px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 6px 20px rgba(255,0,128,0.4);
|
|
}
|
|
|
|
.login-icon {
|
|
width: 45px;
|
|
height: 45px;
|
|
}
|
|
|
|
/* Header Text */
|
|
.header-text {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.header-text h2 {
|
|
background: linear-gradient(45deg, #7928ff, #ff0080);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
font-weight: 700;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.header-text p {
|
|
color: #333;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Inputs */
|
|
input {
|
|
width: 100%;
|
|
padding: 13px;
|
|
margin-bottom: 15px;
|
|
border-radius: 12px;
|
|
border: 2px solid #e6d9ff;
|
|
background: rgba(255,255,255,0.75);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
|
transition: 0.3s ease;
|
|
}
|
|
|
|
input:focus {
|
|
border-color: #b47cff;
|
|
box-shadow: 0 0 10px rgba(180,124,255,0.7);
|
|
outline: none;
|
|
}
|
|
|
|
/* Login Button */
|
|
.btn-login {
|
|
width: 100%;
|
|
padding: 13px;
|
|
background: linear-gradient(to right, #7928ff, #ff0080);
|
|
color: white;
|
|
border-radius: 14px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
letter-spacing: 0.5px;
|
|
box-shadow: 0 6px 15px rgba(255,0,128,0.3);
|
|
transition: 0.3s ease;
|
|
}
|
|
|
|
.btn-login:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 18px rgba(255,0,128,0.4);
|
|
}
|
|
|
|
/* Error Box */
|
|
.error {
|
|
background: #ffe5e5;
|
|
border: 1px solid #ffb2b2;
|
|
color: #b00000;
|
|
padding: 10px;
|
|
border-radius: 12px;
|
|
margin-bottom: 10px;
|
|
display: none;
|
|
box-shadow: 0 5px 15px rgba(255,0,0,0.1);
|
|
}
|
|
|
|
/* Demo Box */
|
|
.demo-box {
|
|
background: rgba(240,240,255,0.7);
|
|
padding: 18px;
|
|
margin-top: 20px;
|
|
border-radius: 18px;
|
|
border: 1px solid rgba(180,160,255,0.4);
|
|
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.demo-item {
|
|
background: white;
|
|
padding: 12px;
|
|
margin-top: 12px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
|
|
}
|