46 lines
749 B
CSS
46 lines
749 B
CSS
.auth-card .active {
|
|
font-weight: 700;
|
|
}
|
|
.auth-form {
|
|
margin-top: 8px;
|
|
}
|
|
.auth-logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
.auth-logo img {
|
|
max-width: 200px;
|
|
width: 100%;
|
|
height: auto;
|
|
filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
|
|
}
|
|
|
|
.auth-title-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
.auth-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
input[readonly].readonly {
|
|
background: #f7f3eb;
|
|
color: #6f6353;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.form-error {
|
|
color: #b23b3b;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-error {
|
|
border-color: #b23b3b;
|
|
box-shadow: 0 0 0 2px rgba(178, 59, 59, 0.1);
|
|
}
|