﻿.title-container {
    margin-left: 8%;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #0F1D3D;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    width: 50vw !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-container h1 {
    font-size: 36px;
    color: white;
}

.jobDescription-form-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: solid 1px #D1D6DB;
}

.jobDescription-form-container h2, .jobDescription-jobInfo-container h2 {
    font-size: 26px;
    font-weight: 600;
    color: #0F1D3D;
}

.input-container:last-of-type {
    margin-bottom: 2%;
}

.input-container {
    position: relative;
    margin-top: 25px;
}

.input-container label {
    position: absolute;
    top: -10px;
    left: 12px;
    background-color: white;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
}

.input-container input {
    width: 100%;
    padding: 16px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #161616;
    outline: none;
    transition: border-color 0.2s;
    background: white;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.input-container input:focus {
    border-color: #1A428A;
}

.input-container input::placeholder {
    color: #9CA3AF;
}

.submit-btn {
    padding: 8px 20px;
    background-color: #1A428A;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.jobDescription-action-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.validate-btn {
    padding: 8px 25px;
    background-color: #22bb33;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease-in-out .2s;
}

.validate-btn:hover, .submit-btn:hover {
    filter: brightness(0.95);
    scale: 1.05;
    transition: all ease-in-out .2s;
}

.jobDescription-action-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 20px;
    border: 1px solid #D1D5DB;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    z-index: 999;
}

.jobDescription-action-container .submit-btn {
    width: fit-content;
}

.submit-btn:hover {
        background-color: #153670;
    }

.submit-btn:disabled {
    background-color: #6B89B8;
    cursor: not-allowed;
}

.jobdescription-container {
    margin-bottom: 100px;
    background: #F4F5F8;
    margin-left: 8%;
    margin-right: 8%;
    scroll-behavior: smooth;
}

.jobdescription-contact-container {
    background: #F4F5F8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.jobDescription-jobInfo-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: solid 1px #D1D6DB;
}

.jobDescription-document-Container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: solid 1px #D1D6DB;
}

.separator {
    background: #070707;
    width: 90%;
    height: 2px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.input-element[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #666;
}

.input-container:has(input[readonly]) label {
    background: linear-gradient(to bottom, white 50%, #f5f5f5 50%);
}

.file-uploads-container {
    width: 100%;

}


.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.25rem;
}

.checkbox-row input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0;
    cursor: pointer;
}

.checkbox-row label {
    cursor: pointer;
    user-select: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .jobdescription-container {
        margin-left: 0px;
        margin-right: 0px;
    }

    .title-container {
        margin-left: 0px;
        width: 100% !important;
    }

        .title-container h1 {
            font-size: 28px;
        }

    .jobDescription-form-container h2, .jobDescription-jobInfo-container h2 {
        font-size: 22px;
    }

    .jobdescription-contact-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (min-width: 1280px) {
    .file-uploads-container {
        width: fit-content;
    }
}