.row {
    color: #ffffff;
    background-color: #011f2000;
}

/* Simple wallet connection status styling */
.wallet-status {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.status-connecting {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-connected {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#connetBtn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

#connetBtn:hover {
    background-color: #0056b3;
}

#connetBtn.connected {
    background-color: #28a745;
}

#connetBtn.connected:hover {
    background-color: #218838;
}

/* Sponsor section styling - initially hidden */
.sponsor-section {
    display: block;
    transition: all 0.3s ease-in-out;
}

.sponsor-section.show {
    display: block;
}

/* Form group consistency */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Wallet input field styling */
#walletKey {
 background-color: #ffffff !important;
    color: #000000 !important;
    border: 0 !important;
    border-radius: 8px;
    padding: 10px 12px;
}



.captcha-flex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.captcha-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.captcha-box {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    min-width: 100px;
    text-align: center;
    user-select: none;
}
.captcha-input {
    max-width: 180px;
    min-width: 120px;
    margin-bottom: 0;
}
@media (max-width: 576px) {
    .captcha-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .captcha-row {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 0;
    }
    .captcha-box {
        margin-bottom: 0;
        font-size: 22px;
        padding: 8px 40px;
    }
    .captcha-input {
        max-width: 100%;
        min-width: 0;
    }
    .captcha-refresh-btn {
        width:auto;
}
}




