22 lines
440 B
CSS
22 lines
440 B
CSS
.form-reserv-page-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 3rem;
|
|
margin: 2rem;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.form-reserv-page-container {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
gap: 1.2rem;
|
|
}
|
|
.form-reserv-section {
|
|
width: 350px !important;
|
|
}
|
|
.send-form-container {
|
|
width: 350px !important;
|
|
}
|
|
}
|