/* ==========================================
   APPLY PAGE
   apply.css
========================================== */

/* HERO */

.apply-hero{
    padding:140px 20px 70px;
    background:#fff;
    color:#000;
    text-align:center;
    border-bottom:1px solid #e5e5e5;
}

.apply-hero span{
    display:inline-block;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#000;
    margin-bottom:15px;
}

.apply-hero h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.apply-hero p{
    max-width:700px;
    margin:auto;
    color:#555;
    line-height:1.7;
}

/* APPLICATION */

.application{
    padding:80px 20px;
    background:#fff;
}

.application-form{
    max-width:1000px;
    margin:auto;
    padding:40px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:16px;
}

.application-form h2{
    margin:45px 0 20px;
    padding-bottom:10px;
    font-size:1.5rem;
    color:#000;
    border-bottom:1px solid #ddd;
}

.application-form h2:first-child{
    margin-top:0;
}

/* GRID */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:25px;
}

.field{
    display:flex;
    flex-direction:column;
}

.field.full{
    grid-column:1 / -1;
}

/* LABELS */

.field label{
    margin-bottom:8px;
    font-size:.95rem;
    font-weight:600;
    color:#000;
}

/* INPUTS */

.field input,
.field select,
.field textarea{
    width:100%;
    padding:15px;
    font-size:1rem;
    color:#000;
    background:#fff;
    border:1px solid #ccc;
    border-radius:10px;
    outline:none;
    transition:border-color .3s, box-shadow .3s;
}

.field textarea{
    min-height:140px;
    resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    border-color:#000;
    box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

::placeholder{
    color:#888;
}

/* PHONE */

.phone-input{
    display:flex;
    gap:10px;
}

.phone-input select{
    width:140px;
}

.phone-input input{
    flex:1;
}

/* FILE */

input[type=file]{
    padding:10px;
}

input[type=file]::file-selector-button{
    padding:10px 16px;
    border:1px solid #000;
    background:#000;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
    margin-right:12px;
    transition:.3s;
}

input[type=file]::file-selector-button:hover{
    background:#fff;
    color:#000;
}

/* CHECKBOX */

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.checkbox input{
    width:auto;
    margin-top:3px;
}

/* BUTTON */

.submit-btn{
    width:100%;
    margin-top:40px;
    padding:16px;
    background:#000;
    color:#fff;
    border:1px solid #000;
    border-radius:10px;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#fff;
    color:#000;
}

.submit-btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

