﻿/* Extracted from career.php */
:root {
    --hero-image-width: 1950;
}

.career-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=var(--hero-image-width)&q=80') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
}

.career-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.career-container {
    max-width: 1000px;
    margin: -3rem auto 5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.career-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.alert {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.file-upload-wrapper {
    grid-column: 1 / -1;
    border: 2px dashed var(--border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-wrapper:hover {
    border-color: var(--accent);
    background: rgba(251, 191, 36, 0.05);
}