﻿body {
    font-family: Arial, sans-serif;
}

.main {
    background: #f4f4f4;
    padding-bottom: 20px;
}

.job-header {
    background: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

    .job-header h1 {
        font-size: 2em;
        margin: 0;
        font-weight: 600;
        color: #212529;
    }

.job-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 85%;
    margin: 0px auto 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .job-details div {
        flex: 1;
        text-align: center;
        min-width: 150px;
        margin-bottom: 10px;
    }

.job-Main {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    max-width: 85%;
    margin: 20px auto;
}

.job-description, .apply-form {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .job-description h2, .apply-form h2 {
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        width: calc(100% - 20px);
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

        .form-group input[type="file"] {
            padding: 3px;
        }

.btn-primary {
    width: 100%;
    padding: 10px;
    background: #854cf3;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

    .btn-primary:hover {
        background: #7232d3;
    }

@media (min-width: 768px) {
    .job-header h1 {
        font-size: 3.5em;
    }

    .job-Main {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
}
