27 lines
305 B
CSS
27 lines
305 B
CSS
.form-container {
|
|
margin-top: 2em;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
}
|
|
|
|
.form {
|
|
width: 100%;
|
|
max-width: 50em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap:1em;
|
|
}
|
|
|
|
.send-button {
|
|
align-self: center;
|
|
}
|
|
|
|
#role {
|
|
width: 100%;
|
|
}
|