    /* Job Application Page Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.awsm-job-single-wrap {
    margin: 10em 5em;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    min-height: 600px;
}
/* Job Content Section */
.awsm-job-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awsm-job-entry-content {
    margin-bottom: 30px;
}

.awsm-job-entry-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

/* Job Specifications */
.awsm-job-specifications-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.awsm-job-specification-item {
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.awsm-job-specification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.awsm-job-specification-label {
    min-width: 120px;
    margin-right: 15px;
}

.awsm-job-specification-label strong {
    color: #333;
    font-weight: 600;
}

.awsm-job-specification-term {
    background: #7a7a7ad7;
    border-radius: 2px;
    color: #fff;
    
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
}

/* Form Section */
.awsm-job-form {
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awsm-job-form h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.awsm-job-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Form Groups */
.awsm-job-form-group {
    margin-bottom: 25px;
}

.awsm-job-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.awsm-job-form-error {
    color: #e74c3c;
    font-weight: bold;
}

/* Form Controls */
.awsm-job-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.awsm-job-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.awsm-job-form-control:hover {
    border-color: #d0d7de;
}

/* Textarea */
textarea.awsm-job-form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* File Input */
input[type="file"].awsm-job-form-control {
    padding: 10px;
    background: #f8f9fa;
    border-style: dashed;
    border-color: #667eea;
}


.awsm-job-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* Checkbox Group */
.awsm-job-inline-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.awsm-job-inline-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    color: black;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    cursor: pointer;
}

.awsm-job-inline-group label {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
}

/* Submit Button */
.awsm-application-submit-btn {
    width: 100%;
    padding: 16px;
    background: black;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.awsm-application-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.awsm-application-submit-btn:active {
    transform: translateY(0);
}

/* Message Area */
.awsm-application-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .awsm-job-single-wrap {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .awsm-job-content,
    .awsm-job-form {
        padding: 30px 25px;
    }
    
    .awsm-job-form h2 {
        font-size: 24px;
    }
    
    .awsm-job-specification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .awsm-job-specification-label {
        min-width: auto;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .awsm-job-content,
    .awsm-job-form {
        padding: 20px;
    }
    
    .awsm-job-specifications-container {
        padding: 20px;
    }
}

/* Focus and Accessibility */
input[type="checkbox"]:focus {
    border: 2px solid #667eea;
    outline-offset: 2px;
    background: #7ebfff;
}
/* Focus and Accessibility */
.awsm-job-form-control:focus,
.awsm-application-submit-btn:focus{
    border: 2px solid #ababab;
    outline-offset: 2px;
}

/* Smooth Animations */
.awsm-job-single-wrap,
.awsm-job-specifications-container,
.awsm-job-form-control,
.awsm-application-submit-btn {
    transition: all 0.3s ease;
}

/* Hover Effects for Interactive Elements */
.awsm-job-specifications-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Loading State for Submit Button */
.awsm-application-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Custom Scrollbar for Textarea */
textarea.awsm-job-form-control::-webkit-scrollbar {
    width: 6px;
}

textarea.awsm-job-form-control::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

textarea.awsm-job-form-control::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

textarea.awsm-job-form-control::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}