34796-vm/assets/css/custom.css
2025-10-08 11:52:31 +00:00

55 lines
1.1 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #F9FAFB;
color: #111827;
}
.hero {
background: linear-gradient(135deg, #4F46E5, #2563EB);
color: white;
}
.btn-primary {
background-color: #4F46E5;
border-color: #4F46E5;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 500;
transition: background-color 0.2s ease-in-out;
}
.btn-primary:hover {
background-color: #4338CA;
border-color: #4338CA;
}
.survey-card {
background-color: #FFFFFF;
border-radius: 0.75rem;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.form-label {
font-weight: 600;
margin-bottom: 0.5rem;
}
.form-control, .form-select {
border-radius: 0.5rem;
padding: 0.75rem 1rem;
border: 1px solid #D1D5DB;
}
.form-control:focus, .form-select:focus {
border-color: #4F46E5;
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.form-check-input:checked {
background-color: #4F46E5;
border-color: #4F46E5;
}