Files
pyisu/frontend/css/auth.css
2026-03-13 14:39:43 +08:00

40 lines
674 B
CSS

/* Auth-specific styles */
.auth-required {
text-align: center;
padding: 3rem;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.auth-required h2 {
color: #4b5563;
margin-bottom: 1rem;
}
.auth-required a {
color: #2563eb;
text-decoration: none;
font-weight: 600;
}
.auth-required a:hover {
text-decoration: underline;
}
.login-footer {
margin-top: 2rem;
text-align: center;
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
}
.login-footer a {
color: #6b7280;
text-decoration: none;
}
.login-footer a:hover {
color: #2563eb;
text-decoration: underline;
}