/* =====================================================
   FORM PAGE FRAME
===================================================== */

.formPage
{
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 140px 6%;

    background-color: #050507;
}

/* VISUALLY HIDDEN (ACCESSIBILITY) */

.visuallyHidden
{
    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

/* FORM WRAPPER */

.formWrapper
{
    width: min(760px, 100%);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 28px;

    padding: 60px 50px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.01)
    );

    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);

    text-align: center;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.formTitle
{
    font-family: Orbitron;

    font-size: 38px;

    margin-bottom: 18px;
}

.formSub
{
    opacity: 0.7;

    margin-bottom: 50px;

    line-height: 1.6;
}

/* =====================================================
   FORM
===================================================== */

.eliteForm
{
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.formGrid
{
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

/* INPUTS */

.eliteForm input,
.eliteForm textarea
{
    width: 100%;

    padding: 16px 18px;

    background-color: #FFFFFF;

    color: #000000;

    border-radius: 12px;

    border: none;

    font-family: inherit;

    font-size: 15px;

    transition: 0.25s;
}

.eliteForm input:focus,
.eliteForm textarea:focus
{
    outline: none;

    box-shadow:
        0 0 0 2px #00FFA7,
        0 0 18px rgba(0, 255, 167, 0.35);
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.ghostSubmit
{
    margin-top: 10px;

    padding: 16px 40px;

    border-radius: 50px;

    background: transparent;

    color: #FFFFFF;

    border: 2px solid #00FFA7;

    font-weight: 600;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.28s;
}

.ghostSubmit:hover
{
    transform: translateY(-3px);

    box-shadow: 0 0 18px rgba(0, 255, 167, 0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width: 700px)
{
    .formWrapper
    {
        padding: 50px 26px;
    }

    .formGrid
    {
        grid-template-columns: 1fr;
    }
}