.dev-test-mode-box {
    display: grid;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(2, 106, 162, 0.14);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(236, 253, 243, 0.96), rgba(239, 248, 255, 0.98)),
        #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.dev-test-mode-box__copy {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.dev-test-mode-box__eyebrow {
    margin: 0;
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dev-test-mode-box__title {
    margin: 0;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dev-test-mode-box__text {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.dev-test-mode-box__text code {
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 0.92em;
    font-weight: 700;
}

.dev-test-icon {
    width: 20px !important;
    height: 20px !important;
}

.dev-test-mode-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.dev-test-mode-box__button:hover {
    transform: translateY(-1px);
    background: #1e293b;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.18);
}

.dev-test-mode-box__button:focus-visible {
    outline: 3px solid rgba(23, 92, 211, 0.22);
    outline-offset: 2px;
}

/*.register-auth-card .dev-test-mode-box {
    margin-bottom: 8px;
}*/

/*.register-page .dev-test-mode-box {
    margin: 0 0 22px;
}*/

@media (max-width: 640px) {
    .dev-test-mode-box {
        padding: 16px;
    }

    .dev-test-mode-box__copy .message-img {
        grid-area: auto;
    }

    .dev-test-mode-box__button {
        width: 100%;
    }
}
