/* 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;
    }
}


/* FORM ELEMENTS - LOGIN SPECIFIC */
/* ------------------------------------------------------------------------ */

.login-center-container {
    width: 85%;
}

.form-label.login {
    color: #051f42;
}

.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;
}


/* GENERAL PAGE LAYOUT ELEMENTS */
/* ------------------------------------------------------------------------ */

.tide-logo {
    width: 120px;
}

.vesselverse-logo {
    width: 600px;
}

.logo-stack img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .vesselverse-logo {
        width: 90vw;
    }
    .tide-logo {
        width: 60vw;
    }
}


/* FOOTER */
/* ------------------------------------------------------------------------ */

.footer-login {
    height: 30%;
    background-color: #051f42;
    z-index: 1;
}