:root {
    --bs-blue: #042b66;
    --bs-blue-2: #075bad;
    --bs-cyan: #00b5e2;
    --bs-cyan-soft: #dff8ff;
    --bs-yellow: #ffd35a;
    --bs-ink: #10233f;
    --bs-muted: #64748b;
    --bs-line: rgba(11, 114, 201, .16);
    --bs-shadow: 0 34px 80px rgba(4, 43, 102, .16);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

.access-body {
    margin: 0;
    color: var(--bs-ink);
    font-family: "Poppins", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at 78% 12%, rgba(0, 181, 226, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f2fbff 48%, #ffffff 100%);
    overflow-x: hidden;
}

.access-photo {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(4, 43, 102, .65), rgba(7, 91, 173, .35), rgba(0, 181, 226, .18)),
        url("../images/login/login_pool.png") center center / cover no-repeat fixed;
}

.access-photo::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.access-waves {
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.access-wave {
    position: absolute;
    left: -9%;
    right: -9%;
    border-radius: 50% 50% 0 0;
    transform: rotate(-2deg);
}

.access-wave-one {
    height: 110px;
    bottom: -58px;
    background: rgba(255, 255, 255, .84);
}

.access-wave-two {
    height: 132px;
    bottom: -82px;
    background: rgba(0, 181, 226, .22);
    transform: rotate(2deg);
}

.access-wave-three {
    height: 86px;
    bottom: -44px;
    background: rgba(213, 247, 255, .54);
    transform: rotate(-5deg);
}

.access-submit {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
    border: 0;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(180deg, #075bad 0%, #00b5e2 100%);
    box-shadow: 0 18px 34px rgba(0, 108, 183, .28);
    font-size: 1rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.access-submit:hover,
.access-submit:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 24px 42px rgba(0, 108, 183, .34);
}

.access-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.access-shortcuts a {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(7, 91, 173, .12);
    border-radius: 22px;
    color: #284866;
    background: rgba(255, 255, 255, .74);
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(4, 43, 102, .07);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.access-shortcuts a:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 181, 226, .38);
    box-shadow: 0 22px 42px rgba(4, 43, 102, .1);
}

.access-shortcuts i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--bs-blue-2);
    background: var(--bs-cyan-soft);
    font-size: 1.04rem;
}

.access-shortcuts span {
    font-size: .84rem;
    font-weight: 750;
    line-height: 1.24;
}

.access-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #7b8ba1;
    font-size: .8rem;
}

.access-footer span {
    color: var(--bs-blue);
    font-weight: 750;
}

@keyframes accessFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes accessSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
