/* Member Registration Form Styles - Elegant White & Gold Theme */

.arm-member-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.arm-member-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(217, 182, 126, 0.15);
    padding: 40px;
    border: 2px solid rgba(217, 182, 126, 0.1);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arm-member-title {
    text-align: center;
    color: #d9b67e;
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.arm-member-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d9b67e, transparent);
}

.arm-form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(217, 182, 126, 0.2);
}

.arm-form-section:last-of-type {
    border-bottom: none;
}

.arm-form-section h3 {
    color: #d9b67e;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(217, 182, 126, 0.3);
}

.arm-form-row {
    margin-bottom: 20px;
}

.arm-form-row-inline {
    display: flex;
    gap: 20px;
}

.arm-form-col-4 {
    flex: 1;
    min-width: 0;
}

.arm-form-col-6 {
    flex: 1;
    min-width: 0;
}

.arm-label {
    display: block;
    margin-bottom: 8px;
    color: #6b5d4a;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arm-label .required {
    color: #d9534f;
    margin-left: 4px;
}

.arm-input,
.arm-textarea,
input.arm-input,
textarea.arm-textarea,
input[type="text"].arm-input,
input[type="email"].arm-input,
input[type="tel"].arm-input,
input[type="date"].arm-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(217, 182, 126, 0.3);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600 !important;
    color: #000000 !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #ffffff;
}

.arm-input::placeholder,
.arm-textarea::placeholder {
    color: #999999;
    font-weight: 400;
}

.arm-input:focus,
.arm-textarea:focus {
    outline: none;
    border-color: #d9b67e;
    box-shadow: 0 0 0 4px rgba(217, 182, 126, 0.1);
    background: #fffef9;
    color: #000000 !important;
}

.arm-textarea {
    resize: vertical;
    min-height: 100px;
}

.arm-description {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #8b7d6b;
    font-style: italic;
}

/* Radio Buttons */
.arm-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.arm-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #6b5d4a;
}

.arm-radio-label input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d9b67e;
}

.arm-radio-label span {
    user-select: none;
}

/* Checkboxes */
.arm-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.arm-checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #d9b67e;
}

.arm-checkbox-label span {
    user-select: none;
}

.arm-checkbox-label strong {
    color: #d9b67e;
    font-weight: 600;
}

.arm-checkbox-label ul {
    margin: 10px 0 0 20px;
    list-style-type: disc;
}

.arm-checkbox-label ul li {
    margin-bottom: 8px;
}

/* Fee Display */
.arm-fee-display {
    background: linear-gradient(135deg, #fffef9 0%, #fff9ed 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(217, 182, 126, 0.3);
    margin-bottom: 20px;
}

.arm-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.arm-fee-label {
    color: #6b5d4a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arm-fee-amount {
    color: #d9b67e;
    font-size: 28px;
    font-weight: 700;
}

/* Promotion Code */
.arm-promo-wrapper {
    display: flex;
    gap: 10px;
}

.arm-promo-wrapper .arm-input {
    flex: 1;
}

.arm-button-secondary {
    padding: 14px 24px;
    background: #ffffff;
    border: 2px solid #d9b67e;
    border-radius: 8px;
    color: #d9b67e;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.arm-button-secondary:hover {
    background: #d9b67e;
    color: #ffffff;
}

/* Messages */
.arm-message {
    display: block;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.arm-message.success {
    color: #5cb85c;
    background: rgba(92, 184, 92, 0.1);
    border-left: 3px solid #5cb85c;
}

.arm-message.error {
    color: #d9534f;
    background: rgba(217, 83, 79, 0.1);
    border-left: 3px solid #d9534f;
}

/* Form Actions */
.arm-form-actions {
    text-align: center;
    margin-top: 35px;
}

.arm-button-primary {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #d9b67e 0%, #c9a66e 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(217, 182, 126, 0.3);
}

.arm-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 182, 126, 0.4);
}

.arm-button-primary:active {
    transform: translateY(0);
}

.arm-button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .arm-member-container {
        padding: 25px;
    }
    
    .arm-member-title {
        font-size: 24px;
    }
    
    .arm-form-row-inline {
        flex-direction: column;
        gap: 0;
    }
    
    .arm-radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .arm-promo-wrapper {
        flex-direction: column;
    }
    
    .arm-button-secondary {
        width: 100%;
    }
}

/* Loading Spinner */
.arm-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}