2017-06-13 17:46:08 +02:00
|
|
|
@import "colors";
|
2017-09-07 18:06:24 +02:00
|
|
|
@import "constants";
|
2017-06-13 17:46:08 +02:00
|
|
|
@import "placeholders";
|
2017-06-14 18:21:24 +02:00
|
|
|
@import "mixins";
|
2017-06-13 17:46:08 +02:00
|
|
|
|
2017-06-21 17:36:27 +02:00
|
|
|
.auth-form {
|
2017-10-19 16:04:45 +02:00
|
|
|
.auth-options {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 4 * $default-spacer;
|
2017-09-07 18:06:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.remember-me {
|
|
|
|
display: inline-block;
|
2017-10-19 16:04:45 +02:00
|
|
|
margin-bottom: 0;
|
2017-06-13 17:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.separation {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $grey;
|
|
|
|
margin: 24px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-with-fc {
|
|
|
|
display: inline-block;
|
|
|
|
height: 52px;
|
|
|
|
width: 186px;
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
background-image: image-url("login-with-fc.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-image: image-url("login-with-fc-hover.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2018-10-11 10:24:11 +02:00
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
2017-06-13 17:46:08 +02:00
|
|
|
background-color: $grey;
|
|
|
|
border: none;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.register {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 17:18:38 +02:00
|
|
|
|
|
|
|
.auth-signup-button {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-06-13 17:46:08 +02:00
|
|
|
}
|
2018-06-19 16:23:43 +02:00
|
|
|
|
2017-10-19 16:04:45 +02:00
|
|
|
.sign-in-form .form {
|
|
|
|
input[type="password"] {
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|