:root {
    --weatherit-blue: #005a8b;
    --weatherit-yellow: #fdb913;
    --weatherit-dark: #333333;
    --weatherit-gray: #777777;
}

/* Navigation */
.main-nav {
    background-color: var(--primary-blue);
    height: 102px;
}

.nav-content {
    height: 72px;
    padding: 15px 50px 0;
}

.logo img {
    height: 63px;
}

/* Background Images */
.background-images {
    position: absolute;
    top: 142px;
    left: 0;
    right: 0;
    height: 729px;
    z-index: 1;
}

.background-images::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 47, 72, 0.7);
    z-index: 2;
    pointer-events: none;
}

.bg-image-1,
.bg-image-2 {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    transform: scaleX(-1);
}

.bg-image-1 {
    left: 0;
    width: 47%;
    height: 770px;
}

.bg-image-2 {
    right: 0;
    width: 53%;
    height: 800px;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding: 50px 0;
}

ubind-authentication {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 454px;
    width: 100%;
    height: 553px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

@media (min-height: 1040px) and (min-width: 768px) {

    html,
    body {
        height: 100%;
        margin: 0;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    main.main-content {
        flex-shrink: 0;
    }

    footer.footer {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
  .background-images {
    top: 102px;
  }
}
/*
.main-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 1252px;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .main-content {
        width: 100%;
        margin: 0 auto;
        padding: 20px 10px;
    }
}
*/
