ev-project
Version:
98 lines (89 loc) • 1.9 kB
CSS
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #121a2f, #5e63ff);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background: #fff;
padding: 40px 30px;
border-radius: 10px;
width: 350px;
box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
text-align: center;
}
.login-container h2 {
margin-bottom: 20px;
color: #1f263d;
}
.google-btn {
background-color: #db4437;
color: white;
border: none;
padding: 12px 20px;
width: 100%;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.google-btn i {
font-size: 16px;
}
.divider {
position: relative;
margin: 20px 0;
text-align: center;
font-size: 14px;
color: #aaa;
}
.divider::before,
.divider::after {
content: "";
position: absolute;
width: 40%;
height: 1px;
background: #ccc;
top: 50%;
}
.divider::before {
left: 0;
}
.divider::after {
right: 0;
}
form input {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
width: 100%;
padding: 12px;
background-color: var(--accent-clr, #5e63ff);
border: none;
color: white;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}
.signup-text {
margin-top: 20px;
font-size: 14px;
color: #333;
}
.signup-text a {
color: #5e63ff;
text-decoration: none;
font-weight: 600;
}