37 lines
557 B
SCSS
37 lines
557 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 472px;
|
|
margin: auto;
|
|
margin-top: 24px;
|
|
gap: var(--spacing-xl, 32px);
|
|
|
|
@media (max-width: 504px) {
|
|
width: unset;
|
|
margin: 24px 16px;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-xl, 32px);
|
|
|
|
.button-container {
|
|
display: flex;
|
|
gap: var(--spacing-md, 16px);
|
|
|
|
@media (max-width: 504px) {
|
|
flex-direction: column-reverse;
|
|
> button {
|
|
width: 100%;
|
|
}
|
|
> a > button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|