/* AIMS Public Form Styles - Green & White */
.aims-form-container { max-width: 900px; margin: 0 auto; font-family: 'Inter', -apple-system, sans-serif; }
.aims-form-header { background: linear-gradient(135deg, #15803d, #166534); color: #fff; padding: 30px; border-radius: 16px; margin-bottom: 25px; text-align: center; }
.aims-form-header h2 { margin: 0 0 8px; font-size: 24px; font-weight: 800; }
.aims-form-header p { margin: 0; opacity: 0.9; font-size: 14px; }

.aims-form-wrap { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.aims-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.aims-form-group { display: flex; flex-direction: column; }
.aims-form-group.full-width { grid-column: 1 / -1; }
.aims-form-group label { font-weight: 700; font-size: 12px; text-transform: uppercase; color: #166534; margin-bottom: 6px; letter-spacing: 0.5px; }
.aims-form-group label .required { color: #ef4444; }
.aims-form-group input,
.aims-form-group select,
.aims-form-group textarea { padding: 12px 16px; border-radius: 10px; border: 1.5px solid #bbf7d0; background: #fff; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.aims-form-group input:focus,
.aims-form-group select:focus,
.aims-form-group textarea:focus { outline: none; border-color: #15803d; box-shadow: 0 0 0 3px rgba(21,128,61,0.1); }
.aims-form-group input[readonly] { background: #f0fdf4; color: #166534; }

.aims-upload-area { border: 2px dashed #86efac; background: #f0fdf4; border-radius: 16px; padding: 25px; text-align: center; cursor: pointer; transition: all 0.2s; }
.aims-upload-area:hover { border-color: #15803d; background: #dcfce7; }
.aims-upload-area i { font-size: 28px; color: #15803d; margin-bottom: 8px; display: block; }
.aims-upload-area p { margin: 0; font-size: 13px; color: #166534; font-weight: 500; }
.aims-upload-preview { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 10px auto 0; border: 3px solid #15803d; display: none; }
.aims-upload-preview.active { display: block; }
.aims-upload-filename { font-size: 12px; color: #15803d; font-weight: 600; margin-top: 8px; }

.aims-payment-note { background: #f0fdf4; padding: 14px; border-radius: 12px; text-align: center; margin-top: 10px; font-size: 13px; font-weight: 600; color: #14532d; }
.aims-payment-note strong { color: #15803d; }

.aims-submit-btn { background: linear-gradient(135deg, #15803d, #166534); border: none; padding: 16px; border-radius: 12px; font-weight: 700; color: #fff; cursor: pointer; width: 100%; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; margin-top: 10px; }
.aims-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,128,61,0.3); }
.aims-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.aims-status-msg { margin-top: 20px; padding: 16px; border-radius: 12px; font-size: 14px; text-align: center; font-weight: 600; display: none; }
.aims-status-msg.success { background: #d1fae5; color: #065f46; display: block; }
.aims-status-msg.error { background: #fee2e2; color: #991b1b; display: block; }
.aims-status-msg.info { background: #dbeafe; color: #1e40af; display: block; }

.aims-fixed-note { background: #f0fdf4; border-radius: 10px; padding: 12px; font-size: 12px; text-align: center; color: #14532d; font-weight: 600; margin-top: 15px; }

@media (max-width: 600px) {
    .aims-form-row { grid-template-columns: 1fr; }
    .aims-form-wrap { padding: 20px; }
}
