2023-07-28 00:17:00 +00:00
|
|
|
.login,
|
|
|
|
.register {
|
|
|
|
max-width: 24rem;
|
2023-08-11 18:50:24 +00:00
|
|
|
padding: 2rem;
|
2023-07-28 00:17:00 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newbie,
|
|
|
|
.reset,
|
|
|
|
.policy {
|
|
|
|
font-size: .9rem;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: .5rem 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $link;
|
|
|
|
&:hover { text-decoration: underline }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
|
|
|
button,
|
|
|
|
.input input {
|
|
|
|
width: 100%;
|
|
|
|
color: $w-color;
|
|
|
|
background: $b-color;
|
|
|
|
font-family: $p-font;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input {
|
2023-08-11 18:50:24 +00:00
|
|
|
margin: 0 0 .5rem 0;
|
|
|
|
|
2023-07-28 00:17:00 +00:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
font-size: .9rem;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: .5rem 1rem;
|
2023-08-11 18:50:24 +00:00
|
|
|
margin: .25rem 0;
|
2023-07-28 00:17:00 +00:00
|
|
|
border: 1px solid $i-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 18:50:24 +00:00
|
|
|
span {
|
|
|
|
color: $error;
|
|
|
|
font-family: $p-font;
|
|
|
|
font-size: .75rem;
|
|
|
|
}
|
|
|
|
|
2023-07-28 00:17:00 +00:00
|
|
|
button {
|
|
|
|
font-size: .9rem;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: .5rem 1rem .6rem 1rem;
|
|
|
|
border: 1px solid $s-color;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
background: rgba($s-color, .05);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|