.loto-header .navbar-wrapper{
    justify-content: flex-end;
}
a.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px !important;
}
.nav-link svg {
    height: 20px;
    width: 20px;
}
.nav-item{
    margin-left: 10px;
}
.nav-link{
   border-radius: 10px;
}
.nav-link.logout{
    background-color: #E64A19;
    color: #fff;
}
.nav-link.logout:hover{
    background-color: rgb(183, 58, 19) !important;
}
.nav-link.menu-active {
    background-color: #fff4cd;
    color: #ffb611;
}
.nav-link:not(.menu-active):hover{
    background-color: #F2F3F5;
}
.navbar.bg-light{
    background-color: #fff !important;
}
/* body */
body {
    background-color: #f2f3f5;
}
.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
/* form */
.form-wrapper{
    background-color: #fff;
    box-shadow: 0 10px 15px -3px #0000001a;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    padding: 25px;
    border-radius: 10px;
}
.form-group{
    margin-bottom: 15px;
}
.input-icon{
    position: relative;
}
.input-icon svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 16px;
    color: #d1d5dc;
}
.input-icon input{
    padding-left: 32px;
}
label {
    margin-bottom: 8px;
}
/* buttons */
.btn-primary {
    background-color: #ffb611;
    border-color: #ffb611;
    outline: none;
    box-shadow: none;
}
.btn-primary:hover{
    background-color: #bf8705;
    border-color: #bf8705;
}

.hero-section {
    padding: 50px 0;
}

.hero-section .bg-img{
    /* background: url('https://images.unsplash.com/photo-1701785924585-d2b4bc6a66cf?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxzdW5zZXQlMjBvY2VhbiUyMHRyb3BpY2FsfGVufDF8fHx8MTc2NTExODQ4Nnww&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral') no-repeat center; */
    background-size: cover;
    background: #000000 url(https://images.unsplash.com/photo-1701785924585-d2b4bc6a66cf?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxzdW5zZXQlMjBvY2VhbiUyMHRyb3BpY2FsfGVufDF8fHx8MTc2NTExODQ4Nnww&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral) center center/cover no-repeat local;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    color: #fff;
    padding: 35px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.btn-secondary {
    color: #000000;
    background: #fff;
    transition: all .4s ease;
}
.btn-secondary:hover {
    background: #F2F3F5;
    color: #000000;
}

.hero-section .btn-secondary svg {
    width: 20px;
}

.hero-section h1 {
    font-size: 50px;
}

.hero-section p {
    max-width: 600px;
}

.hero-section .text-yellow {
    color: #ffc53c;
    font-size: 18px;
}

.card-container .row {
    gap: 20px;
    margin-bottom: 50px;
    justify-content: space-between;
}

.card-container .card {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.card-container .card .titre-card {
    font-size: 20px;
    font-weight: 600;
}

.icon-card-blue {
    background: #5d75e942;
    border-radius: 8px;
    padding: 8px;
    color: #5d75e9;
    display: flex;
    justify-content: center;
    align-items: center
}

.icon-card-light {
    background: #E64A1942;
    border-radius: 8px;
    padding: 8px;
    color: #E64A19;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-card-yellow {
    background: #bf870542;
    border-radius: 8px;
    padding: 8px;
    color: #bf8705;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-link {
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #3b82f6 !important; 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}