:root {
    --secondary-bg-color: #f4f9ff;
    --main-bg-color: #f0f0f0;
}

body,
.navbar,
.nav-link,
.navbar-brand {
    font-family: 'Poppins', Arial, sans-serif;
}

.navbar {
    background-color: var(--secondary-bg-color) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    padding: 5px;
}

.yellow-card {
    border-radius: 5px;
        transition: all 0.3s ease-out 0s;
        position: relative;
        overflow: hidden;
        border: 0;
        background: #fde58a;
        padding: 15px 10px;
}

.blue-card {
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    position: relative;
    overflow: hidden;
    color: white;
    border: 0;
    background: #324B96 ;
    padding: 15px 10px;
}

form{
    background-color: var(--secondary-bg-color) !important;
}

form label{
    font-weight: 600;
}

::placeholder {
    color: #bebebe !important;
    opacity: 1 !important;
}
