/* Crypoverse Frontend Styles */

.crypoverse-payment-form,
.crypoverse-donation-form {
    max-width: 500px;
    margin: 20px 0;
}

.crypoverse-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.crypoverse-field {
    margin-bottom: 20px;
}

.crypoverse-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.crypoverse-field input[type="text"],
.crypoverse-field input[type="email"],
.crypoverse-field input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.crypoverse-amount-input {
    position: relative;
}

.crypoverse-amount-input .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #666;
}

.crypoverse-amount-input input {
    padding-left: 50px;
}

.crypoverse-amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.amount-option {
    margin: 0;
    cursor: pointer;
}

.amount-option input[type="radio"] {
    display: none;
}

.amount-option span {
    display: block;
    padding: 12px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.amount-option input[type="radio"]:checked + span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.amount-option:hover span {
    border-color: #667eea;
}

.crypoverse-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypoverse-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.crypoverse-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.crypoverse-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}

.crypoverse-message.success {
    background: #d1f0d9;
    color: #00632b;
    border: 1px solid #00a32a;
}

.crypoverse-message.error {
    background: #ffd8d9;
    color: #9b1c1f;
    border: 1px solid #d63638;
}

.crypoverse-message.info {
    background: #e0f3ff;
    color: #004085;
    border: 1px solid #2271b1;
}
