.pmx-login-popup{
    z-index: 2500;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: grid;
    grid-template-rows: max-content;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
    text-align: center;
    padding: 15px 20px;
    box-sizing: border-box;
}
.pmx-login-popup .head-area {
    display: grid;
    grid-template-rows: max-content max-content;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
}
.pmx-login-popup .app-name {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.4em;
}
.pmx-login-popup .title {
    font-size: 4rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    padding: 0 20px;
}
.pmx-login-popup .form-area {
    width: 100%;
    display: grid;
    grid-template-rows: max-content;
    grid-template-columns: 100%;
    grid-row-gap: 35px;
}
.pmx-login-popup .input-area {
    width: 50%;
    display: grid;
    grid-template-rows: max-content;
    /*grid-template-columns: 100%;*/
    min-width: 350px;
    max-width: 500px;
    justify-self: center;
    grid-row-gap: 12px;
}
.pmx-login-input,
input[type="text"] {
    margin: 5px 0;
    font-size: 23px;
    border-radius: 3px;
    border: none;
    padding: 9px 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    background-color: transparent;
    background-image: none;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}
input[type="text"]:focus,
.pmx-login-input:focus {
    background-color: transparent;
    color: #fff;
    border: none;
}
.pmx-login-button.button--area {
    font-size: 22px;
    padding: 8px 55px;
    border-radius: 6px;
    background-color: var(--brand-color-magenta);
    border: 1px solid var(--brand-color-magenta);
    color: rgba(255,255,255,1);
    margin: 0;
}
.pmx-login-button.button--area {
    float: none;
}
.pmx-login-button.button--area:hover{
    background-color: var(--brand-color-magenta-hover);
    border: 1px solid var(--brand-color-magenta-hover);
    color: rgba(255,255,255,0.7);
}
.pmx-login-popup.hidden{
    display: none;
}
.pmx-login-overlay{
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background-repeat: no-repeat;
}
.pmx-login-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 650px) {
    .pmx-login-popup .app-name {
        font-size: 1.2rem;
    }
    .pmx-login-popup .title {
        font-size: 5rem;
    }
}
@media screen and (min-width: 1000px) {
    .pmx-login-popup .app-name {
        font-size: 1.3rem;
    }
    .pmx-login-popup .title {
        font-size: 6rem;
    }
}
@media screen and (min-width: 1400px) {
    .pmx-login-popup .app-name {
        font-size: 1.4rem;
    }
    .pmx-login-popup .title {
        font-size: 6.5rem;
    }
}
@media screen and (min-width: 1700px) {
    .pmx-login-popup .title {
        font-size: 8rem;
    }
}
