/* style.css - Styles for the public-facing application form */

/* Application form container */
.hrm-application-form {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form field styling */
.hrm-form-group {
    margin-bottom: 20px;
}

.hrm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.hrm-form-group input,
.hrm-form-group select,
.hrm-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.hrm-form-group input:focus,
.hrm-form-group select:focus,
.hrm-form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* File upload styling */
.hrm-file-upload {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.hrm-file-upload:hover {
    border-color: #007bff;
}

.hrm-file-upload input[type="file"] {
    display: none;
}

/* Submit button styling */
.hrm-submit-button {
    background: #007bff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hrm-submit-button:hover {
    background: #0056b3;
}

/* Form validation styling */
.hrm-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.hrm-success {
    color: #28a745;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: #d4edda;
}

/* Responsive design */
@media (max-width: 768px) {
    .hrm-application-form {
        padding: 20px;
        margin: 20px;
    }
}
