18 lines
291 B
CSS
18 lines
291 B
CSS
/* Register page - container only */
|
|
|
|
.register-container {
|
|
max-width: 400px;
|
|
margin: 50px auto;
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
background: var(--color-bg-primary);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.register-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|