p {
    margin: 0 0 20px 0;
}

.deeplinkForwardingPage * {
    font-family: "Segoe UI", Segoe, serif;
}

.deeplinkForwardingPage .background {
    position: fixed;
    bottom: -100px;
    left: -100px;
    z-index: -1;
    pointer-events: none;
}

.deeplinkForwardingPage .background svg {
    width: clamp(300px, 50vw, 528px);
}

.deeplinkForwardingPage .logo {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
}

.deeplinkForwardingPage .content {
    width: clamp(300px, 50%, 600px);
    text-align: center;
    color: var(--black, #000);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: center;
}

.deeplinkForwardingPage .text {
    margin-bottom: 50px;
}

.deeplinkForwardingPage .text p + p {
    font-size: 16px;
    margin-bottom: 60px;
}

.deeplinkForwardingPage button {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--primary-color, #141e50);
    color: var(--white, #fff);
    text-align: center;
    padding: 10px 60px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color var(--default-transition-duration) ease,
    border-color var(--default-transition-duration) ease;
}

.deeplinkForwardingPage button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.deeplinkForwardingPage .fallback {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey50);
}

.deeplinkForwardingPage #layoutFooter a {
    text-decoration: none;
    color: var(--hyperlink);
    font-weight: bold;
}