Files
element-call-custom/src/LoginPage.module.css
2021-12-10 12:46:18 -08:00

73 lines
981 B
CSS

.logo {
max-width: 300px;
margin: 80px 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 20px;
}
.content {
display: flex;
flex-direction: column;
max-width: 400px;
width: 100%;
height: 100vh;
}
.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;
font-size: 18px;
margin-bottom: 0;
}
.formContainer form {
width: 100%;
}
.formContainer form > * {
margin-top: 32px;
}
.formContainer button {
height: 48px;
width: 100%;
font-size: 15px;
font-weight: 600;
}
.authLinks {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
.authLinks {
margin-bottom: 100px;
font-weight: normal;
font-size: 15px;
}
.authLinks a {
color: #0dbd8b;
text-decoration: none;
}