body {
    /*background: url("/src/images/cropped-cropped-dsc_0001-scaled-1.jpg");*/
    background: url("/src/images/cropped-cropped-dsc_0001-scaled-1-300x90.jpg");
    background-size: auto 100vh;
    background-size: auto 100dvh;
    background-position: 80% top;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    width: 100dvw;
    height: 100dvh;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.background-blur {
    z-index: -1;
    width: 100vw;
    height: 100vh;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.panel {
    z-index: 1;
    color: var(--colorBlackHex);
    background: rgba(255, 255, 255, 0.5);
    width: calc(50vw - 64px);
    height: calc(100vh - 128px);
    width: calc(50dvw - 64px);
    height: calc(100dvh - 128px);
    padding: 32px;
    /*padding-top: 56px;*/
    box-sizing: border-box;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*justify-content: flex-start;*/
    align-items: flex-start;
    position: fixed;
    top: 64px;
    right: 64px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 1) inset,
                0 0.5px 2.5px 0 rgba(0, 0, 0, 0.3),
                0 0 0 0.5px rgba(0, 0, 0, 0.05);
    overflow: scroll;
}

.panel::-webkit-scrollbar {
    display: none;
}

.panel.register {
    padding-top: 56px;
    justify-content: flex-start;
}

h2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc((32px - 1.5em) / 2);
    left: 0;
}

input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 12px;
    line-height: 12px;
    background: rgba(0, 0, 0, 0.05);
    width: calc(50vw - 128px);
    width: calc(50vw - 128px);
    height: 32px;
    padding: 10px 12px;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.5px 4px 1px rgba(0, 0, 0, 0.2) inset;
}

label {
    line-height: 24px;
}

.password-input-container {
    position: relative;
}

.show-hide-password {
    opacity: 0;
    width: 40px;
    height: 32px;
    background: url("/src/images/show-password.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}

.show-hide-password.hide {
    background: url("/src/images/hide-password.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}


.password-input-container:hover .show-hide-password {
    opacity: 1;
}

footer {
    font-weight: 500;
    text-shadow: none;
    height: 64px;
    padding: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    bottom: 0;
    box-shadow: none;
}

footer p {
    margin: 0;
}

@media only screen and (max-width: 600px) {
    body {
        background: url("/src/images/cropped-cropped-dsc_0001-scaled-1-300x90.jpg");
        background-size: auto 100vh;
        background-size: auto 100dvh;
        background-position: 64% top;
        background-repeat: no-repeat;
    }

    .background-blur {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .panel {
        width: calc(100vw - 64px);
        height: calc(75vh - 64px);
        width: calc(100dvw - 64px);
        height: calc(75dvh - 64px);
        top: calc((100vh - (75vh - 64px)) / 2);
        top: calc((100dvh - (75dvh - 64px)) / 2);
        right: 32px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    /*.panel.register {
        padding-top: 56px;
        justify-content: flex-start;
    }*/

    .panel.verify-code {
        height: calc(50vh - 64px);
        height: calc(50dvh - 64px);
        top: calc((100vh - (50vh - 64px)) / 2);
        top: calc((100dvh - (50dvh - 64px)) / 2);
    }

    input {
        width: calc(100vw - 128px);
        width: calc(100dvw - 128px);
    }

    footer {
        font-size: 14px;
        line-height: 14px;
        height: calc((100vh - (75vh - 64px)) / 2);
        height: calc((100dvh - (75dvh - 64px)) / 2);
    }
}