@font-face
{
    font-family: "Halo";

    src: url("/fonts/Halo.ttf") format("truetype");
}


body
{
    margin: 0;

    background-color: #111;

    color: white;

    font-family: Arial, sans-serif;

    font-weight: 400;

    overflow-x: hidden;

    width: 100%;
}

a {
    color: #ff3333;
    text-decoration: none;
}

a:hover {
    color: #ff8888;
    text-decoration: underline;
}

.request-code h4 {
    font-size: 28px;
    letter-spacing: 2px;
}

.builder-title
{
    font-family: "Halo";

    color: red;

    text-align: center;

    font-size: clamp(30px, 10vw, 100px);

    margin: 50px 10px;

    text-shadow:
        3px 3px 5px black;

    max-width: 100%;

    overflow-wrap: normal;

    word-break: normal;

    box-sizing: border-box;
}

.admin-button
{
    background-color:#222;

    color:white;

    border:2px solid white;

    border-radius:5px;

    padding:9px 30px;

    font-size:18px;

    cursor:pointer;

    transition:0.2s;
}


.admin-button:hover
{
    background-color:white;

    color:black;
}


.admin-button:disabled
{
    background-color:#111;

    color:#777;

    border-color:#555;

    cursor:not-allowed;
}

.builder-content
{
    width: 85%;

    max-width: 900px;

    margin: auto;

    padding-bottom: 100px;
}

.copy-container
{
    text-align:center;
    margin-top:20px;
}

.question-card
{
    background-color: #222;

    border: 2px solid #555;

    border-radius: 8px;

    padding: 30px;

    margin-bottom: 35px;

    box-shadow:
        0px 5px 10px black;
}



.question-card h2
{
    font-family: "Halo";

    color: red;

    text-align: center;

    margin-top: 0;

    font-size: 32px;
}

.question-card h3
{
    text-align: center;

    margin-top: 0;

    font-size: 20px;
}

.question-card h4
{
    text-align: center;

    margin-top: 0;

    font-size: 40px;
}



.question-card label
{
    display: block;

    font-size: 20px;

    margin-bottom: 15px;
}



.question-card input,
.question-card select,
.question-card textarea
{
    width: 100%;

    box-sizing: border-box;

    background-color: #111;

    color: white;

    border: 2px solid #555;

    border-radius: 5px;

    padding: 12px;

    font-size: 16px;
}



.question-card textarea
{
    min-height: 150px;

    resize: vertical;
}



.question-card input:focus,
.question-card select:focus,
.question-card textarea:focus
{
    outline: none;

    border-color: red;
}

.copy-button
{
    padding:15px 45px;

    font-size:22px;

    min-width:180px;
}

.submit-button
{
    width: 100%;

    background-color: #111;

    color: red;

    border: 3px solid red;

    border-radius: 8px;

    padding: 20px;

    font-size: 28px;

    font-family: "Halo";

    cursor: pointer;

    transition: 0.2s;

    margin-top: 10px;
}



.submit-button:hover
{
    background-color: red;

    color: white;
}

.submit-button:disabled
{
    cursor: not-allowed;

    opacity: 0.5;
}

.success-box
{
    margin-top:20px;

    padding:15px;

    background-color:#112211;

    border:2px solid lime;

    border-radius:8px;

    text-align:center;
}

.request-id
{
    font-size:28px;
}


.request-id::first-letter
{
    letter-spacing:0;
}

.request-id .dash
{
    margin-left:8px;
    margin-right:8px;
}

.error-box
{
    margin-top:20px;

    padding:15px;

    background-color:#220000;

    border:2px solid red;

    border-radius:8px;

    text-align:center;
}



.verify-status
{
    margin-top:20px;

    padding:15px;

    background-color:#111;

    border:2px solid #555;

    border-radius:8px;

    text-align:center;
}

.next-step {
    margin-top: 40px;
}

#character_count
{
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    color: #aaa;
}



@media(max-width:600px)
{

    .builder-title
    {
        margin:30px 5px;

        font-size:clamp(20px, 9vw, 55px);

        width:calc(100% - 10px);

        overflow-wrap:normal;

        word-break:normal;

        white-space:normal;
    }



    .builder-content
    {
        width:90%;
    }



    .question-card
    {
        padding:20px;

        margin-bottom:25px;
    }



    .question-card h2
    {
        font-size:26px;
    }

        .question-card h3
    {
        font-size:14px;
    }

        .question-card h4
    {
        font-size:34px;
    }



    .question-card label
    {
        font-size:17px;
    }

}