﻿.job-apply-section {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.apply-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

    .apply-container h1 {
        font-size: 2.5rem;
        color: #003b5c;
        margin-bottom: 1rem;
    }

    .apply-container p {
        color: #555;
        margin-bottom: 2rem;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.textarea {
    min-height: 120px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.file-name {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.4rem;
}

.submit-button {
    background-color: #e65c0d;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #ff6f2c;
    }

.success-message {
    background-color: #e7f9ed;
    border-left: 5px solid #28a745;
    padding: 1.5rem;
    color: #155724;
    border-radius: 8px;
    font-size: 1.1rem;
}
