.container{
    width:100%;
    max-width:980px;
    height: 100%;
    background-image: url("bg.png");
    background-position: center;
}
.header{
    height: 50px;
    background-color: #262626;
    position:relative;
}
.header:before{
    position: absolute;
    background: linear-gradient(to right, #009EE3 50%, #FEDB50 50%);
    height: 4px;
    content: "";
    bottom: -4px;
    right: 0;
    left: 0;
}
.header-text{
    height: 12px;
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.86;
    letter-spacing: 1px;
    color: #ffffff;
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 20px;
    text-transform: uppercase;
}
.content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 52px;
}
.title{
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.32;
    letter-spacing: -1px;
    color: #333333;
    padding-top: 24px;
}
.description{
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: normal;
    color: #333333;
    padding-top:4px;
}
.inputs{
    width:100%;
    display: flex;
    padding-top:12px;
    flex-direction: row;
}
#email_reg{
    width: 65%;
    height: 50px;
    background-color: #ffffff;
    border:none;
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 0.1px;
    color: #808080;
    padding-left: 18px;
}
#nl_select{
    width: 35%;
    background-color: #ffffff;
    border:none;
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.47;
    letter-spacing: 0.1px;
    margin-left: 10px;
    border-radius: 0px;
    padding-left: 18px;
    color: #808080;
    cursor: pointer;
}

#form_submit{
    width: 35%;
    height: 34px;
    background-color: #333333;
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing:1px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-left:5px;
    vertical-align: bottom;
    cursor: pointer;
    margin-right: 20px;
    text-decoration: none;
    padding-top:14px;
    position:relative;
}
#form_submit:before{
    position: absolute;
    background: linear-gradient(to right, #009EE3 50%, #FEDB50 50%);
    height: 4px;
    content: "";
    bottom: -4px;
    right: 0;
    left: 0;
}
.subtext{
    font-family: 'Open Sans';
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: normal;
    color: #333333;
    padding-top:9px;
    padding-bottom: 10px;
}
.logo{
    display: contents;
}
.logo img{
    height: auto;
    background-color: white;
    margin-top: 32px;
    border-radius: 5%;
}
.upperSection{
    width:100%;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-right:20px;
}
.textSection{
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 48rem) {
    .upperSection{
        display: flex;
        flex-direction: column;
    }
    .inputs{
        display: flex;
        flex-wrap: wrap;
    }
    #email_reg{
        width: 90%;
        margin-bottom: 10px;
    }
    #form_submit{
        width: calc(90% + 20px);
        margin-left:0px;
        height: 38px;
    }
    .content{
        display: flex;
        flex-direction: column;
        padding-left: 20px;
    }
    .container {
        background-image: url("bg2.png");
        background-size: cover;
        width: 100%;
        height: 100%;
    }
}