    .login-switch {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 1.5em;
        background: #f6f7f7;
        border: 1px solid #c3c4c7;
        border-radius: 4px;
        overflow: hidden;
    }

    .login-switch input[type="radio"] {
        display: none;
    }

    .login-switch label {
        flex: 1;
        text-align: center;
        margin: 0;
        padding: 8px 0;
        cursor: pointer;
        font-size: .95em;
        color: #50575e;
        transition: background 0.2s, color 0.2s;
    }

    .login-switch input[type="radio"]:checked+label {
        background: #2271b1;
        color: #fff;
    }