.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.circle-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2e7d32;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-step {
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.progress-step.active {
    background: #2e7d32;
    transform: scale(1.1);
}

h2 {
    color: #1b5e20;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.3s;
    outline: none;
    background: #fff;
}

input:focus, select:focus {
    border-color: #2e7d32;
    background: #f9fff9;
}

.row-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.row-inline select,
.row-inline input {
    margin-bottom: 0;
}

.row-inline select:first-child {
    width: 20%;
}

.row-inline input {
    width: 50%;
}

.row-inline select:last-child {
    width: 30%;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    background: #2e7d32;
    color: white;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.step {
    display: none;
    animation: fadeIn 0.4s;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; }
}

.doc-group {
    margin-bottom: 12px;
}

.doc-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.doc-line label {
    min-width: 210px;
    font-weight: 600;
    font-size: 14px;
}

.doc-line input[type="file"] {
    max-width: 180px;
    font-size: 11px;
    padding: 2px;
    margin-bottom: 0;
    border: 1px solid #cfe3d1;
    border-radius: 8px;
    background: #f8fff8;
}

.doc-line input[type="file"]::file-selector-button {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin-right: 8px;
}

.doc-line input[type="file"]::-webkit-file-upload-button {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin-right: 8px;
}

.check-no-posee {
    display: inline-flex; 
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    margin-left: 3px;
    cursor: pointer;
    font-size: 13px;
}

.check-no-posee input[type="checkbox"] {
    margin: 0;
    transform: scale(0.95);
    width: auto;
}

#otra_profesion {
    margin-top: 0;
}