/**
 * Application Form Styles
 * File: assets/application-form.css
 */

.aua-application-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.aua-field {
    margin-bottom: 20px;
}

.aua-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.aua-field input[type="text"],
.aua-field input[type="email"],
.aua-field input[type="url"],
.aua-field input[type="number"],
.aua-field input[type="date"],
.aua-field textarea,
.aua-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.aua-field textarea {
    resize: vertical;
}

.required {
    color: #d63638;
}

.aua-radio,
.aua-checkbox {
    display: block;
    margin-bottom: 8px;
}

.aua-submit {
    background: #2271b1;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.aua-submit:hover {
    background: #135e96;
}

.aua-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.aua-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.aua-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.aua-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
```

**Installation Instructions:**

1. Create a folder called `advanced-user-applications` in your `wp-content/plugins/` directory

2. Create the following file structure:
```
advanced-user-applications/
├── advanced-user-applications.php (main plugin file)
├── includes/
│   ├── class-custom-fields.php
│   ├── class-applications.php
│   ├── class-profile-fields.php
│   ├── class-shortcodes.php
│   └── class-member-directory.php
└── assets/
    ├── application-form.js
    └── application-form.css
