.rmp-token-redeem-form input {
    margin-top: 20px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    outline: none;
}

.rmp-token-redeem-form input:focus {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}


.rmp-token-redeem-form label,
.rmp-message-success,
.rmp-message-error {
    color: #ffffff;
}

/* Button */
.rmp-token-redeem-form button {
    background: transparent;
    color: #ffffff;
    padding: 10px 18px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;

    /* smooth animation */
    transition:
            background-color 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.2s ease;
}

.rmp-token-redeem-form button:hover {
    background: #93c01f;           /* etwas softeres Rot */
    border-color: #93c01f;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);   /* leicht „anheben“ */
}

.rmp-token-redeem-form button:active {
    transform: translateY(0);      /* Klick-Effekt */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}