
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.hero_area {
    position: fixed;
    bottom: 40%;
    left: 0px;
    width: 100%;
    height: 20%;
    background-color: #ffffff;
    z-index: -1;
    pointer-events: none;
}

.waves {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
}

.parallax > use {
    animation: move-forever 100s cubic-bezier(.55, .5, .45, .5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -8s;
        animation-duration: 28s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -12s;
        animation-duration: 40s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -16s;
        animation-duration: 52s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -20s;
        animation-duration: 80s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .hero_area {
        height: 80px;
    }
}

.card-body {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: normal; /* Regular text */
    font-size: 0.8rem; /* Same font size */
    color: #555555; /* Dark grey color */
    margin: 0px 0px 0px 2px; /* Minimal spacing above */
    text-transform: uppercase; /* Make all letters uppercase */
    display: block; /* Ensure the label stays above the input/checkbox */
}

.larger-checkbox {
    transform: scale(1.5); /* Make checkboxes larger */
    margin-top: 10px; /* Add space between the label and the checkbox */
}

.form-check-input {
    font-size: 1rem;
    margin-left: 5px
}

.form-control {
    margin-bottom: 16px; /* Spacing between inputs and checkboxes */
}


.invalid-tooltip {
    background-color: #dc3545; /* Red background */
    color: #fff; /* White text */
    top: auto;
    right: 0px;
    margin: -16px 0px 0px 0px;
    padding: 4px 8px 4px 8px
}

.button-right {
    position: relative;
    text-align: right;
}

    .button-right button {
        margin-top: 15px;
        align-self: flex-end;
    }

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #051f42;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .footer .container {
        color: #ffffff;
        text-align: center;
        padding: 30px;
    }

.btn-primary {
    background-color: #051f42;
    border-color: #051f42;
}
