@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* :root { */
    /* --fontColor: "#363135"; */
    /* --greyColor: "#dbd9db"; */
    /* --hoOrange: "#ff7c00"; */
    /* --cgoBlue: "#4281f0"; */
    /* --black: "#363135"; */
    /* --sliderNavColor: "#adacad"; */
    /* --darkGrey: "#737273"; */
    /* --red: "#ec2c22"; */
    /* --darkRed: "#b32c0e"; */
    /* --white: "#fff"; */
    /* --footerColor: "#f6f4f6"; */
    /* font-sizes */
    /* --h1: "42.7px"; */
    /* --title: "25px"; */
    /* --petition_title: "20px"; */
    /* --medium: "14px"; */
    /* --small: "12.8px"; */
    /* --smaller: "10px"; */
    /* --default: "16px"; */
    /* screen sizes */
    /* --desktop: "1024"; */
    /* --tablet: "768px"; */
    /* --mobile: "425px"; */
/* } */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Header */
header {
    max-width: 980px;
    margin: 0 auto 15px;
position: relative;
display: flex;
height: 75px;
}
header .header_container {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
}
header .logo_container {
    display: flex;
    align-self: center;
    cursor: pointer;
}
header .logo_container a img.logo {
    max-width: 153px;
    align-self: center;
    height: -webkit-fill-available;
}
header .subpages_container {
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
    align-self: center;
    margin-left: 40px;
    list-style: none;
}
header .subpages_container li {
display: flex;
justify-content: space-between;
margin-left: 5%;
z-index: 2;
cursor: pointer;
}
header .subpages_container li a {
    transition: .2s linear;
    text-decoration: none;
    color: #363135;
}
header .subpages_container li a:hover {
    color: #4281f0;
}
header .selector_and_creator_container {
    display: flex;
    align-self: center;
}
header .selector_and_creator_container #language_selector {
    margin-right: 10px;
    border-color: #dbd9db;
    border-radius: 4px;
    cursor: pointer;
    color: #363135;
    padding: 3px;
}
header .selector_and_creator_container .create_a_petition {
    display: flex;
    align-self: center;
}
header .selector_and_creator_container .create_a_petition a {
    transition: .2s linear;
    text-decoration: none;
    color: #363135;
}
header .selector_and_creator_container .create_a_petition a:hover {
    color: #4281f0;
}

/* Content login page */
#content {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 25px auto;
    color: #363135;
}
#content h1 {
    align-self: center;
    font-weight: 700;
    margin: 25px 0;
}
#content p {
    text-align: center;
    align-self: center;
}
#content p a {
    text-decoration: none;
    color: #4281f0;
    transition: .2s ease-in-out;
}
#content p a:hover {
    text-decoration: underline;
}
#content .password_reset {
    display: flex;
    flex-direction: column;
}
#content .password_reset p {
    margin: 15px 0;
    padding: 12px 8px;
}
#content .password_reset p input[type=email] {
    padding: 4px 8px;
}
#content .password_reset input[type=submit] {
    width: 30%;
    margin: 15px auto;
    padding: 12px 8px;
    background-color: #4281f0;
    border: 1px solid #4281f0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 6px #363135;
    cursor: pointer;
    transition: .2s linear;
}
#content .password_reset input[type=submit]:hover {
    background-color: #fff;
    color: #4281f0;
    text-shadow: none;
}
#content .socialaccount_ballot {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
}
#content .socialaccount_ballot .socialaccount_providers {
    display: flex;
}
#content .socialaccount_ballot .socialaccount_providers button {
    display: flex;
    width: 150px;
    height: 50px;
    background-size: 35%;
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 2px solid #737273;
    border-radius: 5px;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#content .socialaccount_ballot .socialaccount_providers button a {
    display: flex;
    width: 150px;
    height: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #363135;
    padding: 0 0 0 25px;
    position: absolute;
    align-items: center;
    justify-content: center;
}
#content .socialaccount_ballot .socialaccount_providers button.google {
    background-image: url('../images/btn_google_light_normal.svg');
}
#content form.login {
    width: 50%;
    margin: 0 auto;
}
#content form.login p {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
#content form.login p:last-of-type {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
#content form.login .rememberme {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
#content form.login p label {
    align-self: flex-start;
    font-size: 12.8px;
}
#content form.login p input {
    padding: 5px 8px;
}
#content form.login button.primaryAction {
    width: 100%;
    padding: 12px 8px;
    margin: 10px 0;
    background-color: #4281f0;
    border: 1px solid #4281f0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 6px #363135;
    cursor: pointer;
    transition: .2s linear;
}
#content form.login button.primaryAction:hover {
    color: #4281f0;
    background-color: #fff;
    text-shadow: none;
}
#content form.login .login_help_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#content form.login .login_help_section .secondaryAction {
    margin: 5px 0;
    font-size: 12.8px;
    color: #363135;
    cursor: pointer;
    transition: .2s linear;
}
#content form.login .login_help_section .secondaryAction:hover {
    color: #4281f0;
}
/* Content register page */
#content form.signup {
    width: 50%;
    margin: 0 auto;
}
#content form.signup p {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
#content form.signup p label {
    align-self: flex-start;
    font-size: 12.8px;
}

#content form.signup p label.required::before {
   content: "*";
   color: red;
}

#content form.signup p input {
    padding: 5px 8px;
}
#content form.signup button.register_button {
    position: relative;
    width: 100%;
    padding: 12px 8px;
    margin: 10px 0;
    background-color: #4281f0;
    border: 1px solid #4281f0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 6px #363135;
    cursor: pointer;
    transition: .2s linear;
}
#content form.signup button.register_button:hover {
    background-color: #fff;
    color: #4281f0;
    text-shadow: none;
}

/* Footer */

footer#footer {
    display: flex;
    flex-direction: column;
    background-color: #f6f4f6;
    padding: 20px 0;
    margin-top: 40px;
} 
footer#footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 24px;
    border-bottom: 1px solid #dbd9db;
}
footer#footer .footer-links div {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 25%;
}
footer#footer .footer-links div span {
    color: #737273;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}
footer#footer .footer-links div .footer-links_container {
    margin: 5px 5px 0;
    width: 100%;
}
footer#footer .footer-links div .footer-links_container a {
    text-decoration: none;
    color: #737273;
    cursor: pointer;
    padding: 5px 0;
    transition: .2s ease-in-out;
}
footer#footer .footer-links div .footer-links_container a:hover {
    color: #4281f0;
}
footer#footer .copy {
    display: flex;
    max-width: 960px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 0 auto;
}
footer#footer .copy p {
    padding-top: 25px;
    color: #737273;
    font-size: 12.8px;
    font-weight: 700;
}
