* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "Nunito Sans", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #000000;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main {
    background-color: #f2f2f2;
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    flex: 1 0;
    display: flex;
    padding: 100px 30px;
}

.form-wrapper {
    width: 100%;
    max-width: 736px;
    margin: auto;
    padding: 15px;
    background-color: white;
    min-height: 250px;
    text-align: center;
}

.footer {
    background-color: white;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.footer ul {
    list-style: none;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer ul li {
    margin: 0 10px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.footer ul li a,
.footer ul li a:hover,
.footer ul li a:active,
.footer ul li a:visited {
    text-decoration: none;
    color: #26269C;
}

.copyright {
    height: 18px;
    width: 12px;
    object-fit: contain;
    margin-right: 2px;
}

@media only screen and (max-width: 600px) {
    .footer ul li {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Pages */
.page-container .form-wrapper {
    max-width: 1200px;
}

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

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

/* Language switcher */
.icon-globe {
    background-image: url("../images/globe.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    height: 1.5em;
    width: 15px;
    margin-right: -5px;
}

.lang-switch-container {
    display: flex;
    align-content: center;
}

.lang-switch select {
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../images/arrow.svg) no-repeat 100%;
    background-size: 1em;
    border: 0;
    cursor: pointer;
    margin-left: 12px;
    position: relative;
    outline: none;
    text-align: left;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
}
