body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    color: #002E6B;
    font-family: "Graphik Web", "Helvetica Neue", "Helvetica", "Arial", "sans-serif", "Segoe UI", "Roboto", "Helvetica Neue", "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    -webkit-font-smoothing: antialiased !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
}

h3 {
    font-size: 30px !important;
    line-height: 34px !important;
    color: #002E6B !important;
}

.login-title {
    font-size: 40px !important;
    font-weight: 400 !important;
    color: #002E6B !important;
    style: normal !important;
}

.fixed-header, .fixed-footer {
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.fixed-header {
    top: 0;
    background-color: #ECF0F8;
    height: 50px;
}

.fixed-footer {
    bottom: 0;
    background-color: #4FC15D;
    height: 69px;
    font-size: 16px;
}

.fixed-footer a:link, .fixed-footer a:visited, .fixed-footer a span {
    color: white !important;
}

.fixed-footer a:hover {
    color: #002E6B !important;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "left right";
    height: calc(100vh - 69px);
    box-sizing: border-box;
    padding-top: 50px;
}

.left-column {
    grid-area: left;
    position: sticky;
    top: 50px; /* Height of the header */
}

.right-column {
    grid-area: right;
    background-color: white;
    padding: 100px;
    overflow-y: auto;
    height: 100%;
}

.wallpaper {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.wizard .steps .step {
    background-color: #e9ecef;
    height: 0.375rem;
    flex: 1;
}

.wizard .steps {
    display: flex;
    margin-bottom: 30px;
}

.step {
    margin-left: 10px;
}

.step-active {
    background-color: #4FC15D !important;
}

@media (max-width: 767px) {
    /* For smaller screens */
    .content {
        grid-template-columns: 1fr; /* Stack columns on small screens */
        grid-template-rows: 1fr 1fr; /* two equal rows */
        grid-template-areas:
                "left"
                "right";
    }

    .left-column, .right-column {
        height: 50vh; /* each takes half of the viewport height */
    }

    .right-column {
        padding: 20px;
    }
}

.form-control {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    display: block;
    width: 100%;
    height: 44.451px;
    padding: 0.375rem 0.75rem;
    font-size: 0.86625rem;
    font-weight: 400;
    line-height: 1.5;
    color: #002E6B;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #9099AC;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-control-lg {
    height: 60px;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
    border-radius: 0;
}

input {
    font-size: 1.8rem !important;
    margin: 0;
    font-family: inherit;
    line-height: inherit;
    min-width: 270px;
    color: #002E6B;
    border-color: #002E6B;
}

.btn {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    text-decoration: none;
}


.btn-sm {
    height: 35.5608px;
    padding: 6.16px 13.2px;
    font-size: 0.891rem;
    line-height: 13.2px;
    border-radius: 0;
}

.btn-primary {
    color: #fff;
    background-color: #4FC15D;
    border-color: #4FC15D;
    font-size: 18px;
}

.btn-secondary:disabled {
    color: #fff;
    background-color: #002E6B;
    border-color: #002E6B;
}

.btn.btn-lg, .btn-group-lg > .btn {
    height: 60px;
}

.btn-secondary {
    color: #fff;
    background-color: #002E6B;
    border-color: #002E6B;
}

.button:disabled {
    background-color: -internal-light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
    color: -internal-light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
    border-color: -internal-light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
}

button:hover {
    color: white !important;
    background-color: #022047;
}

.btn-light {
    background-color: #f5f7fb;
    color: #002e6b;
    font-size: 18px;
}

.btn-light:hover {
    background-color: #dae1f0;;
}

.link {
    display: block;
    color: #002E6B;
    text-decoration: underline;
    cursor: pointer;
    font-size: 18px;
    line-height: 28px;
}

.wrap .navbar {
    display: block;
    height: 50px;
    background-color: #ecf0f8;
    z-index: 10;
    width: 100%;
}

.navbar .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 80%;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 7px 0px;
}

.nav > li > a .btn {
    font-size: 1.5rem;
    line-height: 13px;
    font-weight: 500;
}

.nav > li > a .btn-primary {
    box-shadow: 0px 0px 2px 2px #4FC15D;
}

.wrap .navbar {
    display: block;
    height: 50px;
    background-color: #ecf0f8;
    z-index: 10;
    width: 100%;
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 80%;
}

.language {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.card-body {
    display: flex;
    flex-direction: row;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.card-title-green {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    margin: 0;
    padding: 1rem;
    background-color: #4FC15D;
    font-size: 2rem;
}

.card-title-red {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    margin: 0;
    padding: 1rem;
    background-color: #FF0000;
    font-size: 2rem;
}

.card-text-green {
    background-color: rgba(79, 193, 92, 0.2);
    margin: 0;
    padding: 2rem;
}

.card-text-red {
    background-color: #f5dfdc;
    margin: 0;
    padding: 2rem;
}

.custom-list-item::marker {
    content: '\f058'; /* Font Awesome icon code for check-circle */
    font-family: 'Font Awesome 5 Free'; /* Font Awesome font family */
    color: lightgray; /* Adjust the color as needed */
    padding-right: 2rem;
}

.custom-list-item-green::marker {
    color: #4FC15D;
}

.custom-list-item {
    padding-left: 20px; /* Adjust spacing as needed */
    position: relative;
}

ul {
    padding-inline-start: 1.5rem;
}

.control-label {
    font-size: 16px;
    font-weight: 500;
    align-items: center;
    margin-top: 0.75em;
}