55 lines
850 B
CSS
55 lines
850 B
CSS
.container {
|
|
display: grid;
|
|
font-weight: 600;
|
|
background-color: var(--Base-Background-Elevated);
|
|
}
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
padding: 6rem 2rem;
|
|
}
|
|
|
|
.preamble {
|
|
font-family: var(--fira-sans);
|
|
font-size: 1.6rem;
|
|
font-weight: 400;
|
|
line-height: 2.4rem;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.loginLink {
|
|
text-decoration: none;
|
|
color: var(--some-black-color, #2e2e2e);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.linkContainer {
|
|
text-align: center;
|
|
}
|
|
|
|
.contactContainer {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.container {
|
|
border-radius: 32px 4px 4px 32px;
|
|
}
|
|
|
|
.wrapper {
|
|
gap: 3rem;
|
|
}
|
|
|
|
.contactContainer {
|
|
display: block;
|
|
border-top: 0.5px solid var(--UI-Grey-30);
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 3.4rem;
|
|
}
|
|
}
|