.contact-page-bg {
    position: relative;
    min-height: 100vh;
    color: #fff;
}

.contact-page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background: radial-gradient(circle at bottom left,
            #222d5a 0%,
            #000000 60%);

    background-size: cover;
}

.contact-main {
    padding: 10vh 5vw;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    background: linear-gradient(to bottom, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.contact-subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Visually hides labels while keeping them accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #a78afe;
}

.contact-form button {
    align-self: center;
    width: 100%;
    cursor: pointer;
}

.support-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #a78afe;
    border-radius: 10px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.support-notice a {
    color: #a78afe;
    font-weight: bold;
    text-decoration: none;
}

.support-notice a:hover {
    text-decoration: underline;
}

body {
    overflow: auto !important;
}