@font-face {
    font-family: politi;
    src: url(../fonts/Politi-Regular.ttf);
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: politi;
}

header {
    max-width: 1730px;
    display: flex;
    width: 85%;
    margin: auto;
}

.header-wrapper {
    width: 100%;
    height: 6vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    margin: 10px 0 20px 0;
}

button:hover {
    cursor: pointer;
}

.logo-container, .nav-links, .login-links {
    display: flex;
    margin: 0;
}

.logo-container {
    flex: 1;
}

.logo {
    font-weight: 400;
    margin: 5px;
}

.logo-container img {
    width: 160px;
}

.login-link {
    margin: 10px;
}

.login {
    flex: 1;
}

.login-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.login-form .wrapper {
    padding: 10px 20px;
    background-color: #00143c;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.login-form img {
    width: 200px;
    margin-bottom: 20px;
}

.login-form h2 {
    text-align: center;
    margin: 15px 0;
}

.login-form form {
    width: 400px;
    text-align: start;
}

.login-form form #submit {
    text-align: center;
    margin: 25px 0;
}

.login-form form #submit input {
    width: 200px;
    background-color: #ff0000;
    border-color: #ff0000;
}

.btn-politi {
    background-color: rgb(212, 230, 0) !important;
    width: 100%;
}