67 lines
1.0 KiB
CSS
67 lines
1.0 KiB
CSS
.register-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;
|
|
}
|
|
|
|
.register-card h1 {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.register-card .subtitle {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #888;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.form-group .hint {
|
|
font-size: 12px;
|
|
color: #aaa;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.agreement {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
font-size: 13px;
|
|
color: #555;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.agreement input {
|
|
margin-top: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.agreement a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.agreement a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.login-link {
|
|
text-align: center;
|
|
font-size: 13px;
|
|
color: #888;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.login-link a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.login-link a:hover {
|
|
text-decoration: underline;
|
|
} |