2023-01-03 16:58:38 +00:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2022-2024 New Vector Ltd.
|
2023-01-03 16:58:38 +00:00
|
|
|
|
2024-09-06 10:22:13 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-01-03 16:58:38 +00:00
|
|
|
*/
|
|
|
|
|
|
2022-01-04 16:00:13 -08:00
|
|
|
.footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer p {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer .mobileLoginLink {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form {
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
max-width: 360px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form > * + * {
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 800px) {
|
|
|
|
|
.mobileLoginLink {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-13 18:40:16 -04:00
|
|
|
|
|
|
|
|
.notice {
|
2023-08-28 16:45:17 -04:00
|
|
|
color: var(--cpd-color-text-secondary);
|
2023-03-13 18:40:16 -04:00
|
|
|
}
|