@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cairo:wght@400;600;800&display=swap');



:root {

    --primary-blue: #4f7fff; /* Adjusted to match image more closely */

    --primary-hover: #3b6bef;

    --bg-page: #f4f7fa;

    --text-main: #1f2937;

    --text-muted: #6b7280;

    --border-color: #e5e7eb;

    --input-bg: #f9fafb;

}



body {

    font-family: 'Inter', 'Cairo', sans-serif;

    background-color: var(--bg-page);

    color: var(--text-main);

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

    padding: 2rem;

}



.apply-card {

    background: white;

    width: 100%;

    max-width: 680px;

    border-radius: 20px;

    padding: 3rem;

    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);

    text-align: center;

}



.brand-area {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    margin-bottom: 1.5rem;

}



.brand-logo {

    width: 32px;

    height: 32px;

    background: var(--primary-blue);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

}



.brand-name {

    font-size: 1.5rem;

    font-weight: 800;

    letter-spacing: -0.025em;

    color: #111827;

}



.job-header h1 {

    font-size: 1.75rem;

    font-weight: 800;

    margin: 0 0 0.75rem 0;

    color: #111827;

}



.job-header p {

    color: var(--text-muted);

    font-size: 0.95rem;

    max-width: 450px;

    margin: 0 auto 2.5rem;

    line-height: 1.5;

}



.form-body {

    text-align: left;

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1rem;

    margin-bottom: 1rem;

}



@media (max-width: 600px) {

    .form-row { grid-template-columns: 1fr; }

}



.form-group {

    margin-bottom: 1.25rem;

}



.form-control {

    width: 100%;

    background: white;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    padding: 0.85rem 1.25rem;

    font-size: 0.95rem;

    color: var(--text-main);

    outline: none;

    transition: all 0.2s;

}



.form-control::placeholder {

    color: #9ca3af;

}



.form-control:focus {

    border-color: var(--primary-blue);

    box-shadow: 0 0 0 4px rgba(79, 127, 255, 0.1);

}



.upload-zone {

    border: 1px dashed #d1d5db;

    border-radius: 12px;

    padding: 2.5rem 1.5rem;

    text-align: center;

    background: #fff;

    margin: 1.5rem 0;

    cursor: pointer;

    transition: background 0.2s;

}



.upload-zone:hover {

    background: #f8fafc;

}



.upload-icon-wrapper {

    width: 48px;

    height: 48px;

    background: #eff6ff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    margin: 0 auto 1.25rem;

}



.upload-text {

    font-size: 0.95rem;

    color: #4b5563;

    margin-bottom: 0.25rem;

}



.upload-text strong {

    color: var(--primary-blue);

    font-weight: 600;

}



.upload-hint {

    font-size: 0.8rem;

    color: #9ca3af;

}



.btn-submit {

    background: var(--primary-blue);

    color: white;

    border: none;

    width: 100%;

    padding: 1.15rem;

    border-radius: 12px;

    font-weight: 700;

    font-size: 1.05rem;

    cursor: pointer;

    transition: all 0.2s;

    margin-top: 1rem;

    box-shadow: 0 4px 6px -1px rgba(79, 127, 255, 0.2);

}



.btn-submit:hover {

    background: var(--primary-hover);

    transform: translateY(-1px);

    box-shadow: 0 10px 15px -3px rgba(79, 127, 255, 0.3);

}



.success-state {

    text-align: center;

    padding: 2rem 0;

}


