.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    z-index: 1000;
    top: 0;
    margin: 0;
    width: 100vw;
    height: 75px;
    background: #121212;
}

.header__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding-left: 1vw;
    padding-right: 1vw;
}

.logo {
    user-select: none;
    background: url("../images/logo.svg") no-repeat center;
    background-size: contain;
    margin: 0;
    border: none;
    width: 130px;
    height: 60px;
    cursor: pointer;
}

.login {
    user-select: none;
    border: none;
    background: url("../images/login.svg") no-repeat center;
    background-size: contain;
    width: 45px;
    height: 45px;
}