/* CORE */
/* ------------------------------------------------------------------------ */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}


/* WAVES */
/* ------------------------------------------------------------------------ */

.hero_area {
    position: fixed;
    bottom: 30%;
    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;
    }
}


/* FOOTER */
/* ------------------------------------------------------------------------ */

.footer, .footer-login {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.footer {
    z-index: 1100 !important;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

    .footer-container .footer-line1 {
        margin-bottom: 0px;
    }

        .footer-container .footer-line1 a, .footer-container .footer-line2 a {
            text-decoration: none;
            margin: 0px;
            color: #ffffff;
        }

            .footer-container .footer-line1 a:hover, .footer-container .footer-line2 a:hover {
                color: #38A8E0;
            }


/* FORM ELEMENTS - LOGIN SPECIFIC */
/* ------------------------------------------------------------------------ */

.login-center-container {
    width: 85%;
}

.card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
}

.card-body {
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.form-label {
    font-weight: normal;
    font-size: 0.70rem;
    margin: 0px 0px 0px 2px;
    text-transform: uppercase;
    display: block;
    color: #051f42;
}

.form-control {
    font-size: 0.90rem;
    color: #051f42;
}

.btn {
    text-transform: uppercase;
    font-size: 0.70rem;
    line-height: 1.35rem;
}

.button-right {
    position: relative;
    text-align: right
}

    .button-right button {
        margin-top: 15px;
        align-self: flex-end;
        background-color: #051f42;
        border-color: #051f42;
    }

.disclaimer {
    font-size: 0.85rem;
    color: #051f42;
}

    .disclaimer a {
        color: #051f42;
    }

        .disclaimer a:hover {
            color: #ffffff;
        }


/* VALIDATION LAYOUT ELEMENTS */
/* ------------------------------------------------------------------------ */
.validation .validation-summary-errors ul {
    margin-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
    padding-left: 0;
}

    .validation .validation-summary-errors ul li {
        list-style: none;
        font-size: 0.85rem;
    }


/* GENERAL PAGE LAYOUT ELEMENTS */
/* ------------------------------------------------------------------------ */

.tide-logo {
    width: 120px;
}

.luna-logo {
    max-height: 67px;
}

.logo-stack img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .luna-logo {
        width: 90vw;
    }

    .tide-logo {
        height: 6vw;
    }
}


/* PAGE ELEMENTS */
/* ------------------------------------------------------------------------ */

.page-title {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: flex-end;
}

.title-and-badges {
    display: flex;
    align-items: flex-start; /* align top of badges with top of title */
    gap: 1rem; /* small spacing between title and badges */
}

.page-title h1.text, .page-title-center h1.text {
    color: #051F42;
    margin-bottom: 0px;
    padding-bottom: 0px
}

.page-sub-title {
    color: #051F42;
    font-size: 0.85rem;
    margin-top: -2px;
    margin-bottom: 5px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: flex-end;
}

    .page-sub-title h2.text {
        margin-bottom: 0px;
        padding-bottom: 0px
    }

h3.text {
    font-size: 1.6em;
    margin-top: 10px;
}


.letter-spacing {
    letter-spacing: 0.35em;
    font-weight: 600;
}


.shared-key {
    font-weight: 600;
    color: #000000;
}



/* FOOTER */
/* ------------------------------------------------------------------------ */

.footer-login {
    height: 30%;
    background-color: #051f42;
    z-index: 1;
}


/* TOAST ELEMENTS */
/* ------------------------------------------------------------------------ */
.toast-wrapper {
    position: relative;
    top: 1rem;
    right: 1rem;
    z-index: 1080;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}


.toast-container {
    min-width: 250px;
    max-width: 600px;
}

.toast {
    width: 100%;
    --toast-close-color: #ffffff;
}


.toast-success {
    color: #ffffff;
    background-color: #61c4a3;
    --toast-close-color: #61c4a3;
}

    .toast-success a {
        color: #ffffff;
    }

.toast-danger {
    color: #ffffff;
    background-color: #eb5d71;
    --toast-close-color: #ffffff;
}

    .toast-danger a {
        color: #ffffff;
    }

.toast-warning {
    color: #051f42;
    background-color: #ffa34f;
    --toast-close-color: #212529;
}

    .toast-warning a {
        color: #051f42;
    }

.toast-info {
    --toast-close-color: #000000;
}

.toast .btn-close {
    color: var(--toast-close-color) !important;
    filter: none !important;
    margin-right: 10px;
}


