.auth-popup-cont {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000000 !important;
    top: 0;
    left: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.2s ease-in-out;
    display: none!important;
    opacity: 0;
    visibility: visible;
    /*display: flex !important;*/
    /*flex-direction: row;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

#header-login-btn,
#header-register-btn {
    font-family: var(--goldman-font), sans-serif;
    font-size: 1vw;
    transition: all 0.2s linear;
}

#header-login-btn:hover,
#header-register-btn:hover {
   color: var(--theme-color) !important;
}

#header-login-btn i,
#header-register-btn i {
    color: var(--theme-color);
    font-size: 1.4vw;
    transform: translateY(20%);
}

.auth-popup-cont.activated {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: animate-reveal-auth-popup 0.5s ease-in-out forwards;
}

@keyframes animate-reveal-auth-popup {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

.auth-popup-window {
    padding: 1.5vw 0;
    width: 50vw;
    min-height: 30vw;
    background: rgb(80, 16, 113);
    background: radial-gradient(circle at 49% 0%, rgb(80, 16, 113) 0%, rgb(20, 18, 21) 51%);
    position: absolute;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.25);
    z-index: 1;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

button#auth-popup-window-closer {
    padding: 0.25vw 0.25vw;
    background: none!important;
    border-radius: 0.75vw!important;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 2vw;
    right: 2vw;
    border: none!important;
    color: whitesmoke;
}

button#auth-popup-window-closer:hover {
    box-shadow: 0 0 0.5vw #ff0090;
}

img#auth-corner-frame-1 {
    position: absolute;
    top: -0.1vw;
    left: -0.1vw;
    width: 40%;
    z-index: 2;
}

img#auth-corner-frame-2 {
    position: absolute;
    bottom: -0.1vw;
    right: -0.1vw;
    width: 40%;
    z-index: 2;
}

form {
    padding: 0.5vw;
    width: 85%;
    position: relative;
    transition: all 0.35s ease-in-out;
    display: none !important;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0.5vw;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.auth-popup-window.register form#register-form {
    display: flex !important;
    animation: animate-form-active 0.35s ease-in-out forwards;
}

.auth-popup-window.login form#login-form {
    display: flex !important;
    animation: animate-form-active 0.35s ease-in-out forwards;
}

.auth-popup-window.forget-pass form#forget-password-form {
    display: flex !important;
    animation: animate-form-active 0.35s ease-in-out forwards;
}

@keyframes animate-form-active {
    0%{
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

h2#auth-title-frame-1,
h2#auth-title-frame-2,
h2#auth-title-frame-3 {
    width: 16vw;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2#auth-title-frame-1 img,
h2#auth-title-frame-2 img,
h2#auth-title-frame-3 img {
    width: 100%;
    position: relative;
    z-index: 3;
}

h2#auth-title-frame-1 span,
h2#auth-title-frame-2 span,
h2#auth-title-frame-3 span {
    position: absolute;
    z-index: 3;
    color: whitesmoke;
    font-size: 1.15vw;
}

h4.auth-window-subtitle {
    color: #cccccc;
    font-size: 0.9vw;
    transform: translateY(-0.5vw);
}

.auth-input-group-cont {
    width: 90%;
    min-height: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1vw;
}

.auth-input-group {
    width: 48%;
    position: relative;
    border-radius: 1vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.auth-input-group input {
    border: 0.2vw solid purple;
    padding: 0.35vw 0.35vw 0.35vw 2.75vw !important;
    width: 100% !important;
    height: 100% !important;
    transition: all 0.2s linear !important;
    font-size: 1vw;
}

.auth-input-group input:focus {
    box-shadow: 0 0 0.6vw darkmagenta;
    background: #180d18;
}

.auth-input-group span.input-group-icon {
    position: absolute;
    left: 1vw;
    z-index: 2;
    font-size: 1.2vw;
}

.notif-channel-batch-inputs {
    width: 90%;
    margin-top: 0.75vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6vw;
    border-radius: 1vw;
    background: rgba(159, 61, 192, 0.2);
}

.notif-channel-batch-inputs .auth-input-group-cont {
    width: 100%;
}

.notif-channel-batch-inputs h3 {
    margin: 0;
    padding: 0;
    color: whitesmoke;
    font-size: 0.9vw;
}

.auth-check-boxes {
    padding: 1vw;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.checkbox-wrapper {
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5vw;
}

.checkbox-wrapper label {
    color: whitesmoke;
    font-weight: 300;
    font-size: 0.85vw;
}

.auth-submit-btn {
    margin-top: 2.5vw;
    width: 10vw;
    transition: all 0.2s linear;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.auth-submit-btn img {
    width: 100%;
    position: absolute;
}

.auth-submit-btn:hover {
    filter: brightness(1.8);
}

.auth-submit-btn button {
    width: 100%;
    /*padding: 1vw;*/
    position: absolute;
    z-index: 2;
    background: none!important;
    border: none!important;
    color: whitesmoke;
    font-size: 0.9vw;
    font-family: var(--goldman-font), sans-serif;
}

.auth-submit-btn button:focus {
    border: none!important;
}

h5.auth-msg {
    margin-top: 2vw;
    font-size: 0.9vw;
    color: whitesmoke;
}

#forget-password,
#back-to-log {
    transition: all 0.2s linear;
    transform: translateY(1vw);
    background: none!important;
    border: none!important;
    color: whitesmoke;
    font-size: 0.9vw;
    font-family: var(--title-font), sans-serif;
    font-weight: normal;
}

#forget-password:hover,
#back-to-log:hover {
    color: #9f099f;
    text-shadow: 0 0 0.5vw magenta;
}

.auth-popup-cont input {
    height: 3vw!important;
    color: white!important;
}

.auth-popup-cont input,
.auth-popup-cont input::placeholder {
    font-family: var(--goldman-font), sans-serif;
    font-weight: normal;
    color: rgba(245, 245, 245, 0.7) !important;
}

@media screen and (max-width: 450px) {
    .auth-popup-cont input {
        height: 9vw!important;
    }

    .auth-popup-cont {
        display: none!important;
        opacity: 0;
        visibility: visible;
    }

    .auth-popup-window {
        padding: 1.5vw 0;
        width: 88vw;
        min-height: 100vw;
        box-shadow: 0 0 3vw rgba(0, 0, 0, 0.25);
    }

    button#auth-popup-window-closer {
        padding: 1.5vw;
        border-radius: 2.75vw!important;
        top: 2vw;
        right: 3vw;
        transform: scale(1.1);
        z-index: 1000;
    }

    button#auth-popup-window-closer:hover {
        box-shadow: 0 0 2.75vw #ff0090;
    }

    img#auth-corner-frame-1 {
        width: 69%;
    }

    img#auth-corner-frame-2 {
        width: 69%;
    }

    form {
        padding: 8vw 1.5vw;
        width: 88%;
        gap: 1vw;
    }

    h2#auth-title-frame-1,
    h2#auth-title-frame-2,
    h2#auth-title-frame-3 {
        width: 50vw;
    }

    h2#auth-title-frame-1 span,
    h2#auth-title-frame-2 span,
    h2#auth-title-frame-3 span {
        font-size: 3.75vw;
        text-align: center;
    }

    h4.auth-window-subtitle {
        font-size: 3vw;
        transform: translateY(-2vw);
    }

    .auth-input-group-cont {
        width: 90%;
        min-height: 2vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2vw;
    }

    .auth-input-group {
        width: 100%;
        border-radius: 1vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .auth-input-group input {
        border: 0.6vw solid purple;
        padding: 1.35vw 1.35vw 1.35vw 10vw !important;
        font-size: 3.5vw;
    }

    .auth-input-group input:focus {
        box-shadow: 0 0 2.6vw darkmagenta;
    }

    .auth-input-group span.input-group-icon {
        left: 3vw;
        font-size: 3.5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 6vw;
    }

    .notif-channel-batch-inputs {
        width: 90%;
        margin-top: 2.5vw;
        padding: 3vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.6vw;
        border-radius: 2vw;
        background: rgba(159, 61, 192, 0.2);
    }

    .notif-channel-batch-inputs .auth-input-group-cont {
        width: 100%;
    }

    .notif-channel-batch-inputs h3 {
        font-size: 2.9vw;
        text-align: center;
        margin-bottom: 1vw;
    }

    .auth-check-boxes {
        padding: 3vw 2vw;
        width: 90%;
    }

    .checkbox-wrapper {
        gap: 2.5vw;
    }

    .checkbox-wrapper label {
        font-size: 2.5vw;
        line-height: 4vw;
    }

    .auth-submit-btn {
        margin-top: 6.5vw;
        width: 35vw;
    }

    .auth-submit-btn button {
        font-size: 3.65vw;
    }

    .auth-popup-window.login form#login-form .auth-submit-btn {
        margin-top: 12vw;
    }

    h5.auth-msg {
        margin-top: 9vw;
        font-size: 2.9vw;
    }

    #forget-password,
    #back-to-log {
        transform: translateY(5.5vw);
        font-size: 3.29vw;
    }

    #forget-password:hover,
    #back-to-log:hover {
        color: #9f099f;
        text-shadow: 0 0 0.5vw magenta;
    }

    #header-login-btn,
    #header-register-btn {
        font-size: 3.75vw;
        transition: all 0.2s linear;
    }

    #header-login-btn:hover,
    #header-register-btn:hover {
        color: var(--theme-color) !important;
    }

    #header-login-btn i,
    #header-register-btn i {
        color: var(--theme-color);
        font-size: 4.4vw;
        transform: translateY(20%);
    }

}
