48 lines
1.0 KiB
CSS
48 lines
1.0 KiB
CSS
|
|
body {
|
|
background-color: #F9FAFB; /* Gray-50 */
|
|
color: #111827; /* Gray-900 */
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.form-control, .form-select {
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
border: 1px solid #D1D5DB; /* Gray-300 */
|
|
}
|
|
|
|
.form-control:focus, .form-select:focus {
|
|
border-color: #6366F1; /* Indigo */
|
|
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-image: linear-gradient(to right, #6366F1, #4f46e5);
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
padding: 1rem 2rem;
|
|
font-weight: 600;
|
|
color: white;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.logo {
|
|
font-weight: 800;
|
|
color: #111827;
|
|
}
|
|
|
|
.toast-container {
|
|
z-index: 1090;
|
|
}
|