body {
    background-color: #0F1629;
    color: white;
    font-family: "Inter Tight", sans-serif;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
}

.content-wrapper {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    min-height: 100vh;
}

.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 55vh;
    justify-content: center;
    font-family: "Inter Tight", sans-serif;
}

.error-title {
    font-weight: 900;
    font-style: italic;
    font-size: 2.3125rem;
    line-height: 2.8125rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
.outer-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    width: 50vw;
}

@media (max-width: 768px) {
    .outer-wrapper {
        flex-direction: column;
        gap: 0.625rem;
        width: 90vw;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    background-color: #141E38;
    border-radius: 8px;
    gap: 0;
    padding: 2.5rem;
    align-items: center;
    width: -webkit-fill-available;
    justify-content: space-between;
}
.wrapper .button {
    border-radius: 100px;
    height: 2.75rem;
    width: 80%;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    align-content: center;
    background-color: #26355A;
    color: white;
    margin-top: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .button span {
    margin-right: 6px;
}

.wrapper .button.forward {
    background-color: #26355A;
    color: white;
}

.wrapper .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: rgba(27, 222, 228, 0.2);
    width: 40px;
    height: 40px;
    color: #1BDEE4;
    margin-bottom: 10px;
}

.wrapper .chat-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #F0F3FA;
    margin: 0;
    padding: 0;
    line-height: 26px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.wrapper .chat-subtext {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #F0F3FA;
    margin: 0;
    padding: 0;
    line-height: 21px;
    letter-spacing: 0.1px;
}

.wrapper .live-chat-btn {
    border-radius: 100px;
    height: 2.75rem;
    width: 100%;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    align-content: center;
    background-color: #26355A;
    color: white;
    margin-top: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .live-chat-btn span {
    margin-right: 6px;
}
