#popupsignup .modal-dialog {
    max-width: 600px;
}

.popup-auth.wrapper {
    border-radius: 6px !important;
    max-width: 30vw !important;
    border-color: transparent;
    overflow: hidden;
}

.popup-auth .content-grid {
    display: grid;
    grid-column-gap: 2%;
    grid-template-columns: 1fr auto 1fr;
    align-content: center;
    justify-content: space-between;
}

.popup-auth .content-grid.content-bottom-border {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 0.5rem;
}

.popup-auth .mw-fit {
    max-width: fit-content;
}

.popup-auth .popup-auth-header.header-img {
    max-width: 160px;
}

.popup-auth .tagline {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 8pt;
    line-height: 20px;
    color: #777777;
}

.popup-auth .btn-login.btn-social {
    display: block;
    background: #f3f6f9;
    border-radius: 100px;
    border: transparent;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    text-align: center;
    color: #303030;
}

.popup-auth .btn-register-google::before {
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    z-index: 2;
    margin-top: 3px;
    position: absolute;
    background-image: url('/new/img/ic_register_google.png');
    background-repeat: no-repeat;
}

.popup-auth .btn-register-facebook::before {
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    z-index: 2;
    position: absolute;
    background-image: url('/new/img/ic_register_facebook.png');
    background-repeat: no-repeat;
}

.popup-auth .text-separator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-column-gap: 8px;
    justify-content: center;
    align-content: center;
}

.popup-auth .text-separator .separator{
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
}

.popup-auth .popup-form {
    display: block;
    width: 100%;
    background: #f3f6f9;
    border-radius: 24px;
    padding: 10px 16px;
    font-family: "Open Sans";
    font-style: normal;
    border: none;
    font-weight: 300;
    font-size: 14px;
    line-height: 0.75rem;
    align-items: center;
    margin-bottom: 12px;
    color: #000000;
}

.popup-auth .btn-login-block {
    background: #fb7d88;
    border-radius: 100px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    padding: 8px 0px;
    width: 100%;
}

.popup-auth .btn-login-block:hover {
    background: #ffffff;
    border: 1px solid #fb7d88;
    color: #fb7d88;
}

.popup-auth .btn-login-link {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #fb7d88;
}

.popup-auth .content-register p {
    font-family: "Open Sans";
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.popup-auth .content-register p a{
    font-weight: 700;
    color: #ff929a;
}

.popup-auth .content-register .bg-pink {
    background: #ffeef0;
    border-radius: 20px;
    padding: 14px;
    text-align: center;
    color: #434358;
    margin-bottom: 0px;
}

/* Mobile Style */
@media only screen and (max-width: 576px) {
    .popup-auth.wrapper {
        max-width: 100vw !important;
        overflow-y: hidden !important;
        position: fixed !important;
        border-radius: 0px !important; 
    }

    .popup-auth .popup-auth-header.header-img {
        max-width: 150px;
    }

    .popup-auth .tagline {
        line-height: initial;
    }
}