html,
body {
    margin: 0;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

body {
    font-family: 'Poppins', 'Noto Color Emoji', sans-serif;
    color: #000;
    background: transparent url("../img/header-top.png") no-repeat center 160px;
}

@media only screen and (max-width: 1440px) {
    body {
        background-position: center 260px;
    }
}

#login-page #logo-container {
    height: 220px;
    position: absolute;
    top: 0;
    left: 140px;
}

@media only screen and (max-width: 1280px) {
    #login-page #logo-container {
        position: relative;
        left: 0;
        text-align: center;
    }
}

#login-page #logo-container a {
    display: block;
}

#login-page #login-container #title {
    margin: 225px 0 56px 0;
}

@media only screen and (max-width: 1440px) {
    #login-page #login-container #title {
        margin-top: 325px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 1280px) {
    #login-page #login-container #title {
        margin-top: 104px;
    }
}

#login-page #login-container #title h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 100;
    letter-spacing: 5px;
    text-align: center;
    color: #8b8b8b;
}

#login-page #login-container #title h2 {
    margin: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #000;
}

#login-page #form-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#login-page #login-form,
#login-page #login-access {
    margin: 0 20px 20px 20px;
    display: inline-block;
    height: 340px;
    width: 520px;
    position: relative;
    background: url("../img/login-container-item-bg.png");
}

#login-page #login-access {
    padding: 0 45px 0 85px;
    box-sizing: border-box;
}

#login-page #login-form .title,
#login-page #login-access .title {
    margin-top: 48px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

#login-page #login-form .title {
    margin-bottom: 6px;
    margin-left: 90px;
}

#login-page #login-access .title {
    background: url("../img/icon-key.png") no-repeat right;
}

#login-page #login-form #form {
    margin: 0 auto;
    width: 344px;
}

#login-page #login-form form {
    font-size: 14px;
}

#login-page #login-form form label {
    margin-left: 20px;
    font-weight: 600;
    line-height: 2;
}

#login-page #login-form form input[type=text],
#login-page #login-form form input[type=password] {
    box-sizing: border-box;
    margin-bottom: 5px;
    padding: 0 20px;
    border: 1px solid #03112b;
    height: 50px;
    width: 344px;
}

#login-page #login-form form input[type=text] {
    font-style: italic;
}

#login-page #login-form form input[type=submit] {
    border: none;
    height: 50px;
    width: 150px;
    font-size: 14px;
    color: #fff;
    background-color: #000;
    cursor: pointer;
}

#login-page #login-form form #reset-login {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#login-page #login-form form #reset-login .reset {
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

#login-page #login-form form #reset-login .reset .triangle {
    margin-right: 14px;
    display: block;
    font-size: 24px;
    color: #c62c37;
}

#login-page #login-form form #reset-login .reset a {
    display: inline;
    color: #000;
    text-decoration: none;
}

#login-page #login-form form #reset-login .reset a:hover {
    text-decoration: underline;
}

#login-page #login-access .info {
    margin-top: 30px;
    font-size: 16px;
    line-height: 30px;
}

#login-page #login-access .contact {
    margin-top: 22px;
    background: url("../img/icon-envelope.png") no-repeat left;
}

#login-page #login-access .contact .email {
    padding-bottom: 12px;
    padding-left: 72px;
    font-size: 20px;
    line-height: 30px;
    color: #c62c37;
    text-decoration: none;
}

#login-page #login-access .contact .email:hover {
    text-decoration: underline
}

#login-page a.btn--secondary {
    display: inline-block;
    background-color: #cd303a;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    text-align: center;
    padding: 12px 15px;
    border: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

#login-page .language-switcher {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 24px;
}

#login-page .language-switcher select {
    height: 40px;
    background-color: #EFF1F1;
    border: none;
    padding: 0 12px 0 24px;
    appearance: none;
}

#login-page .language-switcher select:hover {
    cursor: pointer
}