:root {
    --col_dark: #13165d;
    --col_blue: #209dd7;
    --col_light_grey: #d6d5d6;
    --col-dark_white: #e6e6e6;
    --col_grey: #5e5e60;
    --col_red: #b6181f;
    --col_orange: #fdd200;
    --col-green: #10871f;
    --col_light_green: #50d500;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: white;
    color: var(--col_dark);
}
#full_page {
    min-height: 100vh;
    position: relative;
}

/* ########### BOXES, DIVS, AREAS ############*/
.content_main {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
}

.content_box {
    margin: 0 auto;
    padding: 30px;
    width: 100%;
    background-color: white;
    /* border-bottom: 5px solid var(--col_dark);
    -webkit-box-shadow: 0px 10px 0px 0px var(--col_blue);
    box-shadow: 0px 10px 0px 0px var(--col_blue); */
}
.content_box h1,
.content_box h2 {
    margin-right: -30px;
    margin-left: -30px;
    margin-top: -30px;
    white-space: nowrap;
}
.content_box .content_text {

}

/* ########### FORM ############*/

/* ************ BUTTONS ************ */
#full_page .button {
    border-radius: 0px;
    border: 2px solid white;
    padding: 10px 50px;
    transition: 0.3s;
}
#full_page .button:hover{
    transform: scale(1.05);
}

#full_page .button.dark {
    background-color: var(--col_dark);
    color: white;
}
#full_page .button.dark:hover {
    background-color: var(--col_blue);
    color: var(--col_dark);
}

/* *********** FORM ELEMENTS ************* */
#full_page input[type='text'],
#full_page input[type='email'],
#full_page input[type='password'] {
    border-radius: 0px;
    border: 1px solid var(--col_light_grey);
    background-color: white;
    color: var(--col_dark);
    font-size: 1rem;
}


/* *********************** PUBLIC STYLES ******************** */
/* ----------- PUBLIC HEADER AREA ------------ */
#public_header_area {
    position: relative;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    border-bottom: 1px solid var(--col_light_grey);
}
#public_header_area #logo_area {
    text-align: center;
    padding: 15px 20px 10px;
    min-width: 260px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#public_header_area #logo_area img {
    width: 100%;
    max-width: 300px;
}
#public_header_area #slogan {
    height: 45px;
    color: var(--col_blue);
    font-weight: 300;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 22px;
    border-left: 2px solid var(--col_blue);
    line-height: 45px;
    white-space: nowrap;
}

/* ----------- HEADER BUTTONS ---------- */
#public_header_area #header_buttons {
    display: flex;
}

#public_header_area #header_buttons a {
    border: 1px solid var(--col_blue);
    color: var(--col_blue);
    padding: 3px 25px 4px;
    font-size: 16px;
    margin-right: 20px;
    text-decoration: none;
}
#public_header_area #header_buttons a.active,
#public_header_area #header_buttons a:hover {
    background-color: var(--col_blue);
    color: white;
}

.pcoin_count a {
    color: white;
    text-decoration: none;
}
.pcoin_count a:hover {
    text-decoration: underline;
}

/* ------------- PUBLIC FOOTER ----------- */
#public_footer_area {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    background-color: var(--col_blue);
    color: white;
    position: absolute;
    bottom: 0;
}

#public_footer_area a {
    color: white;
    margin-right: 20px;
}



/* -------------- TYPOGRAPHY ----------- */
h1, h2 {
    color: var(--col_dark);;
    font-size: 32px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid var(--col_orange);
    padding-bottom: 10px;
}

h2 {
    font-size: 18px;
}