49 lines
1.1 KiB
CSS
49 lines
1.1 KiB
CSS
.auth-card {
|
|
max-width: 450px;
|
|
margin-top: 5vh;
|
|
}
|
|
|
|
.auth-title {
|
|
font-family: 'Libre Baskerville', serif;
|
|
font-weight: 700;
|
|
font-size: 2.2rem;
|
|
color: #2e1e0a;
|
|
margin-bottom: 8px;
|
|
background: linear-gradient(to bottom, #8c4a32 20%, #4a2a14 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
line-height: 0.9 !important;
|
|
letter-spacing: -1px;
|
|
filter: drop-shadow(1px 1px 0px rgba(255,255,255,0.1));
|
|
}
|
|
|
|
.auth-input .v-field__prepend-inner {
|
|
display: flex !important;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.auth-input .v-icon {
|
|
color: #f8f1e0 !important;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.auth-toggle-btn {
|
|
font-family: 'Inter', sans-serif !important;
|
|
font-size: 0.85rem !important;
|
|
color: #6d5e4a !important;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.auth-toggle-btn:hover {
|
|
color: #2e1e0a !important;
|
|
}
|
|
|
|
.auth-switch-enter-active, .auth-switch-leave-active {
|
|
transition: all 0.3s ease;
|
|
}
|
|
.auth-switch-enter-from, .auth-switch-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
} |