43 lines
868 B
CSS
43 lines
868 B
CSS
|
|
:root {
|
|
--bs-primary: #005bac;
|
|
--bs-secondary: #6c757d;
|
|
--bs-light: #f8f9fa;
|
|
--bs-dark: #343a40;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
|
background-color: var(--bs-light);
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
color: var(--bs-primary);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-image: linear-gradient(to right, #005bac 0%, #007bff 100%);
|
|
border: none;
|
|
transition: all 0.3s ease;
|
|
background-size: 200% auto;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-position: right center;
|
|
}
|
|
|
|
.login-container {
|
|
max-width: 450px;
|
|
margin-top: 5rem;
|
|
margin-bottom: 5rem;
|
|
}
|