/* assets/css/style.css */

/* Donation Form Styles */
.netcash-donation-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.active-step {
    display: block;
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Toggle Menu */
.toggle-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

/* Amount Options */
.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.amount-option {
    flex: 1;
    min-width: 80px;
    cursor: pointer;
}

.amount-option input {
    display: none;
}

.amount-option span {
    display: block;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.amount-option input:checked + span {
    background: #05b0a8;
    color: #fff;
    border-color: #05b0a8;
}

/* Custom Amount Field */
.custom-amount-field {
    margin-top: 10px;
}

/* Identity Options */
.identity-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.identity-option {
    flex: 1;
    cursor: pointer;
}

.identity-option input {
    display: none;
}

.identity-option span {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.identity-option input:checked + span {
    background: #05b0a8;
    color: #fff;
}

/* Form Fields */
.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #05b0a8;
    box-shadow: 0 0 5px rgba(5, 176, 168, 0.3);
}

/* Buttons */
.btn-next, .btn-next-step2, .btn-submit {
    width: 100%;
    padding: 12px;
    background: #05b0a8;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-next:hover, .btn-next-step2:hover, .btn-submit:hover {
    opacity: 0.9;
}

.btn-back {
    background: none;
    border: none;
    color: #05b0a8;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Powered By */
.powered-by {
    text-align: center;
    margin-top: 20px;
}

.powered-by img {
    height: 40px;
}

/* Responsive */
@media (max-width: 480px) {
    .amount-options {
        gap: 5px;
    }
    
    .amount-option {
        min-width: 60px;
    }
    
    .amount-option span {
        padding: 8px;
        font-size: 14px;
    }
    
    .identity-options {
        flex-direction: column;
        gap: 10px;
    }
}