@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    background: #f2f2f2;
    font-family: 'Roboto', sans-serif;
}

.content-container {
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.logo-light, .logo-dark {
    width: 160px;
}

.logo-dark {
    display: none;
}

.redirect-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.redirect-info h2 {
    margin: 0;
    font-size: 20px;
}

.redirect-info p {
    margin: 0;
    color: #757575;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.user-info img.account-icon {
    margin-bottom: 10px;
    height: 48px;
}

.user-info h3 {
    font-size: 18px;
    margin: 5px;
}

.user-info p {
    font-size: 14px;
    color: #5994d6;
}

.redirect-info p span.bolded {
    font-weight: 700;
}

.redirect-btn {
    border: 1px solid #5994d6;
    color: #fff;
    background: #5994d6;
    border-radius: 25px;
    padding: 10px 0;
    width: 150px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #000101;
        color: #fff;
    }

    .logo-light {
        display: none;
    }

    .logo-dark {
        display: initial;
    }

    .redirect-info p {
        color: #b7b7b7;
    }

    .user-info p {
        font-size: 14px;
        color: #5994d6;
    }
}