.login-teaser-modal .modal-close {
    background-position: -12.4375rem -1.375rem;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    margin-right: -0.75rem;
    margin-top: -0.375rem;
}

.login-teaser-layout-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.login-teaser-layout {
    width: 680px;
    min-height: 436px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    background-image: var(--desktop-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-teaser-layout .close {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 13.2px;
    height: 13.2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.login-teaser-layout .short-desc {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #0F3D2B;
}

.login-teaser-layout .long-desc {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    color: #0F3D2B;
}

.login-teaser-layout .cta-btn {
    max-width: 100%;
    width: auto;
    border-radius: 25px;
    height: 36px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: #379D5C;
    margin-top: 12px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.login-teaser-layout .register-block {
    color: #888;
    margin-bottom: 0px;
}

.login-teaser-layout .register-link {
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    color: #0F3D2B;
}

.login-teaser-layout .content-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    text-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .login-teaser-layout .right-panel {
        width: 340px;
        margin-left: auto;
        padding: 25px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .login-teaser-layout .content-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: auto 0;
        align-items: center;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .login-teaser-layout {
        width: 351px;
        min-height: auto;
        background-image: var(--mobile-bg);
        background-position: top center;
        background-size: cover;
        display: block;
        padding: 0;
    }

    .login-teaser-layout .right-panel {
        width: 100%;
        margin-top: 155px;
        min-height: calc(100% - 210px);
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .login-teaser-layout .content-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin: 0;
        align-items: center;
    }

    .login-teaser-layout .content-block {
        max-width: 300px;
        width: 100%;
        gap: 25px;
        align-items: center;
    }
    
    .login-teaser-layout .register-block {
        color: #888;
        margin-bottom: 12px;
    }
}