68 lines
857 B
CSS
68 lines
857 B
CSS
|
.form {
|
||
|
padding: 0 24px;
|
||
|
justify-content: center;
|
||
|
max-width: 360px;
|
||
|
}
|
||
|
|
||
|
.form > * + * {
|
||
|
margin-bottom: 24px;
|
||
|
}
|
||
|
|
||
|
.headline {
|
||
|
text-align: center;
|
||
|
margin-bottom: 60px;
|
||
|
}
|
||
|
|
||
|
.callEndedContent {
|
||
|
text-align: center;
|
||
|
max-width: 360px;
|
||
|
}
|
||
|
|
||
|
.callEndedContent h3 {
|
||
|
margin-bottom: 32px;
|
||
|
}
|
||
|
|
||
|
.callEndedButton {
|
||
|
width: 100%;
|
||
|
margin-top: 54px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
min-height: calc(100% - 64px);
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
display: flex;
|
||
|
flex: 1;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
display: flex;
|
||
|
margin-bottom: 54px;
|
||
|
}
|
||
|
|
||
|
.headline {
|
||
|
margin-bottom: 40px;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
margin-bottom: 44px;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 800px) {
|
||
|
.logo {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
min-height: calc(100% - 76px);
|
||
|
}
|
||
|
}
|