/* Fonts */

@font-face {
    font-family: 'Activ Grotesk';
    src: url('AktivGroteskVF.woff2') format('woff2-variations');
    src: url('AktivGroteskVF.woff2') format('woff2') tech('variations');
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

body {
    font-family: 'Activ Grotesk', sans-serif;
    overflow-x: clip;
}

div.main-container {
    width: 100vw;
    height: 100vh;
}

/* Titles */

.header-container {
    display: flex;
    flex-direction: column;

    text-align: left;
    font-weight: 400;
    padding-top: 120px;
}

.header-1 {
    font-size: 36px;
    line-height: 35px;
}

.header-2 {
    font-size: 18px;
    line-height: 20px;
}

/* Form */

main.form-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    gap: 32px;
    padding-right: 77px;
    padding-left: 77px;
}

main.form-container .form-input-groups {
    display: flex;
    flex-direction: column;
}

/* Form Input labels */

main.form-container label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

/* Form buttons */

form.form-signin button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;

    margin-top: 40px;
}

/* Login background */

div.home-background {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    align-items: center;
    padding-left: 15vw;
    position: relative;
}

/* NIQ Digital Shelf Logo */

img#logo-light {
    height: 12%;
}

img#previously-di{
    height: 3%;
    position: absolute;
    bottom: 8vh;
    left: 15vw;
}
/* Buttons/icons */

.btn {
    font-weight: 500;
    height: 40px;
}


.show-hide-pw {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 14px;
    font-weight: 500;
    padding-right: 0px;
    align-content: center;
    cursor: pointer;
    color: #2D6DF6;
}

.show-hide-pw span {
    font-size: 14px;
    font-weight: 600;
}

span.text-md {
    font-size: 16px !important;
}

.alerts-container {
    display: flex;
    flex-direction: column;
    min-height: 20px;
}

/* Login Page */
.sp_link {
    background-color: #EDF5FF;
    border: #A6C8FF 1px solid;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    display: block;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #3c3838;
}

.sp_link img {
    height: 100%;
}
.auth-input{
    border-radius: 2px;
}

#users-options {
    max-height: 35vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: clip;
    padding: 10px;
    border: 1px solid #ced4da;
    background: white;
    border-radius: 0.25rem;
    display: none;
    position: absolute;
}

#login-as-user {
    position: relative;
}

#login-as-user img {
    height: 70%;
    position: absolute;
    right: 0.5rem;
}

#login-as-user span {
    white-space: nowrap;
}

#login-as-user-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3c3838;
}

#users-search {
    margin-bottom: 1rem;
}

#search-wrapper {
    position: relative;
}

#search-wrapper img {
    height: 70%;
    position: absolute;
    transform: translateY(25%);
    right: 0.5rem;
}

.email-option {
    white-space: nowrap;
    cursor: pointer;
}

.login-btn,
.logout-btn {
    font-size: 16px;
}

.login-btn {
    background-color: #2D6DF6;
}

.logout-container {
    position: sticky;
    right: 0;
    bottom: 0;

    background: white;
}

#disabled-username-section small {
    color: #726E6E;
}

#disabled-username-section input {
    color: #565151;
    background-color: #F7F3F2;
}

#back_username {
    text-decoration: underline;
    color: #2D6DF6;
}

#reset-password {
    margin-top: 0.5rem;
    color: #2D6DF6;
}

/* Display/Hide login form */
.hidden {
    height: 0;
    opacity: 0;
}

div.input-in {
    transition: opacity 1.4s ease-in-out;
    height: 100%;
    opacity: 1;
    z-index: 99999;
}

div.input-out {
    opacity: 0;
    height: 0;
    z-index: 0;
}

@media (min-width: 1200px) {
    .header-container {
        padding-top: 80px;
    }

    
}

@media (min-width: 1400px) {
    .header-container {
        padding-top: 152px;
    }

}