html, body {
    background-color: var(--bg-darker);
}
.tab {
    display: none;
    opacity: 0;
    height: 100vh;
    width: 100vw;
    place-content: center;
}
.tab.show {
    display: grid;
    opacity: 1;
    transition: opacity 0.1s;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100vw;
    max-width: 350px;
    padding: 20px;
    padding-top: 50px;
    background-color: var(--bg);
    border-radius: var(--border-radius);
    height: 400px;
}
.tab-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
    text-align: center;
    user-select: none;
}
object > svg {
    fill: #ffffff;
}
.tab-title {
    font-size: 22px;
    font-weight: 700;
}
.tab-desc {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
}
.input, .btn {
    width: 100%;
}
@media screen and (max-width: 600px) {
    .container {
        max-width: unset;
        height: 100vh;
        border-radius: 0;
    }
    .btn {
        margin-top: auto;
    }
}