44 lines
506 B
SCSS
44 lines
506 B
SCSS
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.checkbox-container {
|
|
display: flex;
|
|
}
|
|
|
|
.text-input {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
label {
|
|
width: 29%;
|
|
text-align: left;
|
|
}
|
|
|
|
input {
|
|
width: 71%;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
label {
|
|
width: 47%;
|
|
}
|
|
}
|
|
}
|
|
|
|
input {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.confirmed-input {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.submit-button {
|
|
padding-top: 31px;
|
|
padding-bottom: 31px;
|
|
}
|