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
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-01-03 16:58:38 +00:00
|
|
|
*/
|
|
|
|
|
|
2021-12-10 12:46:18 -08:00
|
|
|
.logo {
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
margin: 80px 0;
|
2022-01-14 14:17:51 -08:00
|
|
|
height: auto;
|
2021-12-10 12:46:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 20px;
|
2021-12-10 15:07:39 -08:00
|
|
|
height: 100%;
|
2021-12-10 12:46:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
width: 100%;
|
2021-12-10 15:07:39 -08:00
|
|
|
min-height: 100%;
|
2021-12-10 12:46:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formContainer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formContainer h2,
|
|
|
|
|
.formContainer h4 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formContainer h4 {
|
|
|
|
|
font-weight: normal;
|
2022-12-09 14:25:02 -05:00
|
|
|
font-size: var(--font-size-subtitle);
|
2021-12-10 12:46:18 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formContainer form {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formContainer button {
|
|
|
|
|
height: 48px;
|
|
|
|
|
width: 100%;
|
2022-12-09 14:25:02 -05:00
|
|
|
font-size: var(--font-size-body);
|
2021-12-10 12:46:18 -08:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authLinks {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 100px;
|
2022-12-09 14:25:02 -05:00
|
|
|
font-size: var(--font-size-body);
|
2021-12-10 12:46:18 -08:00
|
|
|
}
|