.form-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.job-summary {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.job-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--secondary);
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.uploaded-file {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 15px;
}

.uploaded-file-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
}

.uploaded-file-info {
    flex: 1;
}

.uploaded-file-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.uploaded-file-size {
    font-size: 0.8rem;
    color: var(--gray);
}

.uploaded-file-actions {
    display: flex;
    gap: 10px;
}

.uploaded-file-actions button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.uploaded-file-actions button:hover {
    color: var(--secondary);
}

.sidebar-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.application-tips li {
    margin-bottom: 10px;
}


.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.file-error {
    border-color: #ef4444;
}