2021-12-07 17:59:55 -08:00
|
|
|
.home {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
2021-12-10 10:54:18 -08:00
|
|
|
flex-direction: column;
|
2021-12-10 15:07:39 -08:00
|
|
|
min-height: 100%;
|
2021-12-10 10:54:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.splitContainer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left,
|
|
|
|
|
.right {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-09 12:58:30 -08:00
|
|
|
.fullWidth {
|
|
|
|
|
background-color: var(--bgColor1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 12:46:18 -08:00
|
|
|
.fullWidth .header {
|
|
|
|
|
background-color: var(--bgColor1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.centered {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 512px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
flex: 1;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content {
|
2021-08-19 17:49:45 -07:00
|
|
|
display: flex;
|
2021-12-07 17:59:55 -08:00
|
|
|
flex-direction: column;
|
2021-08-19 17:49:45 -07:00
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content form > * {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 24px;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content form > :last-child {
|
|
|
|
|
margin-bottom: 0;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content hr:after {
|
2021-12-10 10:54:18 -08:00
|
|
|
background-color: var(--bgColor1);
|
2021-12-07 17:59:55 -08:00
|
|
|
content: "OR";
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -12px;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2021-12-17 10:40:09 -08:00
|
|
|
padding: 40px 92px;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fieldRow {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
height: 40px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left .content form:first-child {
|
|
|
|
|
padding-top: 0;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
2021-12-07 17:59:55 -08:00
|
|
|
.left .content form:last-child {
|
2021-12-10 10:54:18 -08:00
|
|
|
padding-bottom: 40px;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right .content {
|
2021-12-16 10:13:40 -08:00
|
|
|
padding: 0 40px 40px 40px;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right .content h3:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2021-12-10 10:54:18 -08:00
|
|
|
|
2021-12-13 11:55:10 -08:00
|
|
|
.authLinks {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authLinks {
|
|
|
|
|
margin-bottom: 100px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authLinks a {
|
|
|
|
|
color: #0dbd8b;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 10:54:18 -08:00
|
|
|
@media (min-width: 800px) {
|
|
|
|
|
.left {
|
|
|
|
|
background-color: var(--bgColor2);
|
2021-12-13 11:24:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home:not(.fullWidth) .left {
|
2021-12-13 11:22:50 -08:00
|
|
|
max-width: 50%;
|
2021-12-10 10:54:18 -08:00
|
|
|
}
|
|
|
|
|
|
2021-12-10 12:46:18 -08:00
|
|
|
.home:not(.fullWidth) .leftNav {
|
2021-12-10 10:54:18 -08:00
|
|
|
background-color: var(--bgColor2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.splitContainer {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fullWidth .content hr:after,
|
2021-12-10 12:46:18 -08:00
|
|
|
.left .content hr:after,
|
|
|
|
|
.fullWidth .header {
|
2021-12-10 10:54:18 -08:00
|
|
|
background-color: var(--bgColor2);
|
|
|
|
|
}
|
|
|
|
|
}
|