64 lines
1.5 KiB
CSS
64 lines
1.5 KiB
CSS
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
.title {
|
|
margin-bottom: 0.5rem;
|
|
text-align: center;
|
|
font-size: 1.25rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.025em;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.description {
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
font-size: 0.875rem;
|
|
line-height: 1.625;
|
|
color: var(--text-tertiary);
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.link {
|
|
font-size: 0.875rem;
|
|
line-height: 1.25rem;
|
|
color: var(--text-tertiary);
|
|
text-decoration: none;
|
|
transition-property: color;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.link:hover {
|
|
color: var(--text-primary);
|
|
text-decoration: underline;
|
|
}
|