body, html {
    color: #2e2f30;
    text-align: center;
    font-family: Poppins, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 1em;
}

.dialog {
    width: 95%;
    max-width: 50em;
    border: 1px solid #999;
    border-radius: 15px;
    border-bottom-color: #bbb;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

.dialog:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(to right, #ff035b, #799fff);
    filter: blur(30px);
    opacity: .7;
    border-radius: 15px;
    z-index: -2;
}

.dialog:after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #ff035b, #799fff);
    border-radius: 15px;
    z-index: -1;
}

.dialog > div {
    padding: 1em 5em;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 100%;
    line-height: 1.5em;
}

.dialog > footer {
    padding: 1em;
    font-size: .75em;
    border-top: 1px solid #999;
    color: #666;
    background-color: #eee;
    border-radius: 0 0 15px 15px;
}

.dialog > footer a {
    color: unset;
}

.dialog p {
    font-size: 1em;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo img {
    max-width: 250px;
    width: 100%;
    margin: 25px auto;
}

.user-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 2em;
}

.user-button {
    position: relative;
    display: inline-block;
    width: 200px;
    padding: 0.75em 1.5em;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #ff035b, #799fff);
    text-align: left;
    font-size: 1.1rem;
    z-index: 0;
}

.user-button::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, #ff035b, #799fff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.user-button:hover,
.user-button:focus {
    color: white;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.user-button:hover::before,
.user-button:focus::before {
    mask: unset;
    mask-composite: unset;
    -webkit-mask: unset;
    -webkit-mask-composite: unset;
}

.user-button i {
  margin-right: 0.5em;
}

@media (prefers-color-scheme: dark) {
    body, html {
        color: #e0e0e0;
        background-color: #121212;
    }

    .dialog {
        border-color: #222;
    }

    .dialog > div {
        background-color: #222;
    }

    h1 {
        color: #e0e0e0;
    }

    .dialog > footer {
        background-color: #111;
        border-color: #666;
        color: #ccc;
        border-top: 1px solid #333;
    }
}

@media (min-width: 1200px) {
    body, html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    body, html {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body, html {
        font-size: 12px;
    }

    .hero {
        top: auto;
        bottom: 0;
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    body, html {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    body, html {
        font-size: 10px;
    }
}