/* FLOII 2025 Contest Plugin - Frontend Styles */

.floii-registration-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.floii-form-group {
    margin-bottom: 20px;
}

.floii-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.floii-form-group input,
.floii-form-group select,
.floii-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.floii-form-group input:focus,
.floii-form-group select:focus,
.floii-form-group textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.floii-price-display {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.floii-price-display h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.floii-price-amount {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.floii-submit-btn {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.floii-submit-btn:hover {
    background: linear-gradient(135deg, #005a87, #007cba);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.floii-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.floii-loading {
    display: none;
    text-align: center;
    padding: 20px;
    color: #666;
}

.floii-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #f5c6cb;
}

.floii-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #c3e6cb;
}

.floii-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.floii-header h2 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 28px;
}

.floii-header p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

/* Success Page Styles */
.floii-success-page {
    max-width: 700px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.floii-success-header {
    text-align: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.floii-success-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.floii-registration-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.floii-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.floii-detail-row:last-child {
    border-bottom: none;
}

.floii-detail-label {
    font-weight: bold;
    color: #666;
}

.floii-detail-value {
    color: #333;
}

.floii-qr-section {
    background: #fff;
    border: 2px dashed #28a745;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.floii-important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floii-registration-form,
    .floii-success-page {
        margin: 10px;
        padding: 20px;
    }
    
    .floii-detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .floii-detail-label {
        font-size: 14px;
    }
    
    .floii-success-header h1 {
        font-size: 24px;
    }
    
    .floii-price-amount {
        font-size: 24px;
    }
}
