71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #343A40;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.05);
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #0A74DA, #17A2B8);
|
|
color: white;
|
|
padding: 6rem 1rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0A74DA;
|
|
border-color: #0A74DA;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #085dab;
|
|
border-color: #085dab;
|
|
}
|
|
|
|
.section {
|
|
padding: 4rem 1rem;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 3rem;
|
|
color: #0A74DA;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,.08);
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem;
|
|
}
|
|
|
|
.form-control:focus {
|
|
box-shadow: 0 0 0 0.25rem rgba(10, 116, 218, 0.25);
|
|
border-color: #0A74DA;
|
|
}
|
|
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 1090;
|
|
}
|