/* Your styles here */
:root {
    --red: #d81220;
    --cream: #efc16d;
    --brown: #490f00;
}

/*@font-face {*/
/*    font-family: 'goForGold';*/
/*    src: url(../fonts/GoForGoldText.woff);*/
/*    font-weight: normal;*/
/*}*/

body
{
    color: #ffffff;
    background-color: var(--cream);
    /*font-family: 'goForGold', serif;*/
}

.socials
{
    margin-top: 32px;
}

.socials .socials-icons
{
    display: flex;
    gap: 16px;
    justify-content: center;
}

.formContainer .error
{
    color: var(--cream);
}

.formContainer input[type="text"]
{
    border-radius: 8px;
    border: solid 1px var(--cream);
    /*font-family: 'goForGold', serif;*/
}

.formContainer .buttonContainer
{
    margin-top: 32px;
}

.formContainer .buttonContainer button
{
    /*font-family: 'goForGold', serif;*/
}

.bg-red
{
    background-color: var(--red);
}

.headerImgContainer {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

.headerImgContainer>i {
    display: block;
    background: url(/img/promonow-logo.svg) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.twix-header
{
    background: url("../img/background.jpg") no-repeat center;
    background-size: cover;
    height: 100vw;
    z-index: -3;
    position: relative;
}

.twix-header-imgs
{
    background: url("../img/mobile_group.png") no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.semi-circle-border
{
    background: url("../img/curve.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%); 
    height: 25vw;
    width: 150%;
}

.overflow-hidden
{
    position: relative;
    height: 100%;
    width: 100%;
    overflow-x: clip;
    margin-top: -10%;
    z-index: -2;
}

.margin-top-negative
{
    margin-top: -19%;
}

.formContainer label {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.field .label
{
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.mandatory
{
    color: var(--cream) !important;
}

.bg-brown
{
    background-color: var(--cream);
}



.text-white
{
    color: var(--brown);
}

.footer > div
{
    text-align: center;
}

.mb-0
{
    margin-bottom: 0;
}

.pb-50
{
    padding-bottom: 50px;
}

.text-center
{
    text-align: center;
}

.mandatoryFields
{
    color: #ffffff;
}

@media only screen and (min-width: 450px)
{
    .buttonContainer
    {
        text-align: center;
    }
    
    .buttonContainer button
    {
        min-width: 300px !important;
    }
}

@media only screen and (min-width: 700px)
{
    body
    {
        width: 700px;
        margin-inline: auto;
        margin-block: 16px;
        background-color: #ffffff;
    }
    
    footer ul li
    {
        display: inline-block;
        margin-inline: 12px;
        padding-block: 0;
    }
    
    .page-container
    {
        box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 40px, rgba(0, 0, 0, 0.4) 0px 5px 10px;
    }
    
    .twix-header
    {
        height: 700px;
    }
    
    .semi-circle-border
    {
        height: 175px;
    }
}