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
|
|
|
|
2022-02-24 12:21:06 +01:00
|
|
|
#auth,
|
|
|
|
#agentconnect {
|
2019-04-01 15:03:13 +02:00
|
|
|
// On small screens, hide the procedure description text on auth pages.
|
|
|
|
// It avoids pushing the sign-in/sign-up form out of the viewport.
|
|
|
|
//
|
|
|
|
// The procedure description can still be read from the /commencer
|
|
|
|
// pages.
|
2022-02-24 12:22:03 +01:00
|
|
|
.column {
|
2022-03-02 14:26:24 +01:00
|
|
|
padding-top: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form label {
|
|
|
|
margin-bottom: $default-spacer / 2;
|
2022-02-24 12:22:03 +01:00
|
|
|
}
|
2019-04-01 15:03:13 +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;
|
2022-03-02 14:26:24 +01:00
|
|
|
margin-bottom: 2 * $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
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
2022-02-24 12:22:03 +01:00
|
|
|
input[type="email"] {
|
2022-03-02 14:26:24 +01:00
|
|
|
margin-bottom: $default-spacer;
|
2022-02-24 12:22:03 +01:00
|
|
|
}
|
|
|
|
|
2017-10-19 16:04:45 +02:00
|
|
|
input[type="password"] {
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-01-14 14:35:30 +01:00
|
|
|
|
|
|
|
#session-new {
|
|
|
|
.important-header {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|