63 lines
1022 B
CSS
63 lines
1022 B
CSS
.login-card {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
|
|
padding: 40px 32px;
|
|
}
|
|
|
|
.login-card h1 {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.login-card .subtitle {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #888;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.form-options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.form-options label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: #555;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.form-options a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.form-options a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.register-link {
|
|
text-align: center;
|
|
font-size: 13px;
|
|
color: #888;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.register-link a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.register-link a:hover {
|
|
text-decoration: underline;
|
|
} |