main
{
    background-position: center;
    background-image: url(../content/abstract-landscape-with-photorealistic-view-moon.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

section
{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    min-width: 650px;
    min-height: 550px;
    border-style: solid;
    position: relative;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(2px);
    border: 4px solid;
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    font-family: "Nova Round", system-ui;
}

form > h2
{
    font-size: 56px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 2.5rem;
    margin-bottom: 3rem;
}

form > .tokenInput
{
    display: flex;
    position: absolute;
    flex-direction: row;
    margin-inline: 4rem;
    min-width: 80%;
    height: 3rem;
    border-bottom: 4px solid rgba(255, 255, 255, 0.75);
    border-radius: 0.5rem;
}

.tokenInput > label
{
    position: absolute;
    bottom: 20%;
    margin-inline: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 32px;
    font-weight: bolder;
}

.tokenInput > .bx
{
    position: relative;
    font-size: 48px;
    bottom: 0.3em;
    color: rgba(255, 255, 255, 0.75);
}

.tokenInput > :is(input)
{
    min-width: 85%;
    background: transparent !important;
    border: none;
    outline: none;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.75);
    margin-inline: 1rem;
}

input:focus ~ label, input:valid ~ label
{
    top: -40px;
}

button
{
    position: absolute;
    bottom: 4em;
    left: 5em;
    min-width: 10em;
    min-height: 3em;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: bolder;
    font-size: 32px;
    backdrop-filter: blur(15px);
    border-radius: 2rem;
    border: 4px solid rgb(255, 255, 255, 0.75);
    cursor: pointer;
}

button:hover 
{
    color: rgba(0, 0, 0, 0.75);
    border-color: rgba(0, 0, 0, 0.75);
}