:root {
    --color-primary: #0c3cdb;
    --color-primary-light: #0c3cdb;
    --color-secondary: #f0f3f8;
    --color-gray: #646b77;
    --color-gray-light: #e1e5eb;
    --color-white: #ffffff;
    --shadow: 0 4px 6px rgba(44, 76, 124, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--color-secondary);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: var(--color-primary);
    padding: 20px 0;
    color: var(--color-white);
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
}

.form-container {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.form-title {
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-gray-light);
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    background-color: var(--color-gray);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-gray);
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-primary-light);
    outline: none;
    box-shadow: 0 0 0 2px rgba(85, 119, 169, 0.2);
}

.required:after {
    content: ' *';
    color: #e74c3c;
}

.help-text {
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 5px;
}

.experience-entry {
    background-color: var(--color-secondary);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}

.experience-entry:last-child {
    margin-bottom: 0;
}

.add-btn {
    background-color: var(--color-primary-light);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.remove-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a62;
}

.btn-secondary {
    background-color: var(--color-gray-light);
    color: var(--color-gray);
}

.btn-secondary:hover {
    background-color: #d0d5dd;
}

.progress-container {
    background-color: var(--color-gray-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    background-color: var(--color-gray-light);
    color: var(--color-gray);
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.step.active {
    background-color: var(--color-primary);
    color: white;
}

.step::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 15px solid var(--color-gray-light);
    z-index: 1;
}

.step.active::after {
    border-left-color: var(--color-primary);
}

.step:last-child::after {
    display: none;
}

.form-page {
    display: none;
}

.form-page.active {
    display: block;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

input.error, select.error, textarea.error {
    border-color: #e74c3c;
}

.completion-message {
    text-align: center;
    padding: 40px 20px;
}

.completion-message h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.completion-message p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hide {
    display: none;
}

.file-upload {
    border: 2px dashed var(--color-gray-light);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover {
    border-color: var(--color-primary-light);
}

.file-upload-input {
    display: none;
}

.file-name {
    margin-top: 10px;
    font-size: 14px;
}

.logotype {
    width: 70px;
    height: 70px;
    background-color: var(--color-white);
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        margin-bottom: 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline {
        margin-top: 10px;
    }
    
    .step {
        font-size: 14px;
        padding: 12px 0;
    }
}
