main {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("https://hub.goldenphoenixexpressvtc.com/img/form_2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for brightness */
    z-index: 1;
}

.middle_holder {
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0/0.1),0 8px 10px -6px rgb(0 0 0/0.1);
    color: white;
    padding: 1rem;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: .75rem;
    z-index: 10;
    width: 100%;
    max-width: 600px;
}

.middle_holder h1 {
    font-family: "Gotham Medium", serif;
    font-size: 2rem;
    margin-top: 0;
}

.button-link {
    display: inline-block;
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0/0.1), 0 8px 10px -6px rgb(0 0 0/0.1);
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-size: 16px;
}

.button-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}