
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Open Sans', sans-serif;
}

body{
    background-color: #fff;
}

/* HEADER CSS */

header.page_header, footer.page_footer, .page {
    width: 100%;
    border: 10px solid #fff;
}

.header_container, .footer_container, .page_container {
    max-width: 1400px;
    margin: 0 auto;
}
.page_container {
    min-height: calc(100vh - 200px);
}

.page_header {
    height: 100px;
    position: sticky;
    top: 0;
    left: 0;
}

.header_container {
    background-color: #BFF000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.header_site_title {
    font-size: 25px;
    margin: 0;
    padding: 10px 20px 10px 20px;
    color: white;
    height: 100%;
    background-color: black;
    border-radius: 10px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_site_title a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-weight: 100;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1px;
}

.hambi_menu img {
    filter: invert(100%);
}



ul.nav {
    display: flex;
    justify-content: right;
    align-items: center;
    column-gap: 30px;
    height: 100%;
    padding: 0 30px;
}

.menu ul li {
    list-style: none;
    color: black;
}

.logo_img {
    height: 100px;
    width: 100%;
    background-color: black;
}
.logo_img img {
    width: 100%;
    height: 100%;
}

.menu {
    height: 100px;
    flex-basis: calc(100% - 200px);
}
.auth, .logo {
    flex-basis: 100px;
}

ul.nav li a.selected {
    text-decoration: underline;
}
ul.nav li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.auth {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    color: black;
    padding: 5px 10px;
    background-color: #edf0f2;
    margin-right: 0.5rem;
    font-weight: 800;
}

.auth a.login-btn {
    border-radius: 10px;
}

.langsel {
    margin-right: 20px;
}

.langsel ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.langsel ul li {
    list-style-type: none;
}

.langsel .right a {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.langsel .left a {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}



.langsel ul a {
    text-decoration: none;
    background-color: transparent;
    background-color: white;
    color: black;
    font-size: 12px;
    padding: 5px 10px;
    margin: 0;
}

.langsel ul a.selected {
    background-color: black;
    color: white;
}

/* FOOTER CSS */

.footer_container {
    background-color: #efefef;
    height: 100px;
}


.footer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/* PAGE CSS */

.page_title {
    margin: 2rem auto;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
}

.page_content {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-weight: bolder;
}

/* FORMS CSS */

.page_form {
    margin: 2rem;
    border: 2px solid #525557;
    padding: 2%;
}

.form_row {
    width: 90%;
    margin: auto;
}

.form_name_row, .form_password_row, .form_email_row, .form_submit_row, .form_message_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.form_name_row input {
    width: 48%;
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem;
    background-color: #d2d5d9;
    border: none;
    cursor: pointer;
}

.form_name_row input::placeholder {
    color: black;
}

.form_name_row input:focus {
    color: black;
    background-color: white;
    border: 1px solid #d2d5d9;
}

.form_name_row input:focus::placeholder {
    color: #525557;
}

.form_email_row input {
    flex-basis: 100%;
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem;
    background-color: #d2d5d9;
    border: none;
    cursor: pointer;
}

.form_email_row input::placeholder {
    color: black;
}

.form_email_row input:focus {
    background-color: white;
    border: 1px solid #d2d5d9;
}

.form_email_row input:focus::placeholder {
    color: #525557;
}

.form_message_row textarea {
    flex-basis: 100%;
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem;
    background-color: #d2d5d9;
    border: none;
    cursor: pointer;
}

.form_message_row textarea::placeholder {
    color: black;
}

.form_message_row textarea:focus {
    background-color: white;
    border: 1px solid #d2d5d9;
}

.form_message_row textarea:focus::placeholder {
    color: #525557;
}

.form_password_row input {
    width: 48%;
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem;
    background-color: #d2d5d9;
    border: none;
    cursor: pointer;
}

.form_password_row input::placeholder {
    color: black;
}

.form_password_row input:focus {
    background-color: white;
    border: 1px solid #d2d5d9;
}

.form_password_row input:focus::placeholder{
    color: #525557;
}

.form_submit_row input {
    flex-basis: 100%;
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem;
    background-color: #7a7d80;
    border: none;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-weight: bolder;
}

.form_submit_row input:hover {
    background-color: #525557;
}

.form_text_link {
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.form_text_link a {
    text-decoration: none;
    color: black;
}

.form_text_link a:hover {
    color: #525557;
    text-decoration: underline;
}

input .form_button {
    background-color: #525557;
    color: white;
    font-weight: bolder;
}
.error {
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    color: red;
}
