* {
    box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  padding: 20px; 
  background-color: #f8fafc;
  color: #2d3748;
  line-height: 1.6;
} 

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
 
.logo-container {
    position: relative;
    text-align: center;
}

.back-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #3182ce;
    font-size: 22px;
}

.logo {
    width: 200px;
}

h1 {
    font-size: 24px;
    color: #3182ce;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.description {
    margin: 0 auto 15px;
    text-align: center;
    /* color: #2d3748;
     */
     color: #4a5568;
}

.subtitle {
    font-size: 16px;
    color: #718096;
    text-align: center;
    margin-bottom: 20px;
}

.language-toggle {
    text-align: right;
    margin-bottom: 20px;
}

#language {
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #edf2f7;
    font-size: 14px;
    cursor: pointer;
}

.progress-bar {
    background: #e2e8f0;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    background: #3182ce;
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.section {
    display: none;
    margin-bottom: 20px;
}

.section.active {
    display: block;
} 

.section h2 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 15px;
    border-left: 4px solid #3182ce;
    padding-left: 10px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 5px;
}

select,
input[type="file"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #f7fafc;
    font-size: 14px;
}

select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

.multi-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  gap: 10px; 
}

.multi-list p {
  background-color: #f5f9fd;
  font-size: 14px;
  color: #3182ce;
  border: 1px solid #3182ce;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0;
  display: inline-block;
  width: fit-content;
}
.remove {
    padding-left: 8px;
    font-weight: bold;
    cursor: pointer;
}
.image-capture {
    display: flex;
    align-items: center;
    gap: 10px;
}

.click-button {
    margin-top: 10px;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #edf2f7;
    color: #3182ce;
    cursor: pointer;
    font-size: 14px;
}

.click-button:hover {
    background: #e2e8f0;
}

video,
canvas,
img#captured-image {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.nav-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #3182ce;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.nav-button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.nav-button:hover:not(:disabled) {
    background: #2b6cb0;
}

/* Footer */
.footer {
    max-width: 90%;
    margin: auto;
    margin-bottom: 0;
    text-align: center;
    color: #3182ce;
    padding: 20px 30px 0;
}
.footer strong, .footer p {
    margin: 0;
}
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    .section h2 {
        font-size: 16px;
    }

    .nav-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}