*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  padding: 20px; 
  background-color: #f8fafc;
  color: #2d3748;
  line-height: 1.6;
}

.container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo-container {
    text-align: center;
    height: 50px;
}

.logo {
    width: 180px;
}

/* Title Header */
.page-title {
    font-size: 22px;
    font-weight: 500;
    color: #3182ce;
    text-align: center;
    margin-bottom: 10px;
}

/* Progress Bar */
.progress-bar {
    background: #e2e8f0;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}
.progress {
    background: #3182ce;
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

/* Form Styles */
.section {
    display: none;
    margin-bottom: 20px;
}

.section.active {
    display: block;
}

.section h4 {
    color: #2d3748;
    margin-bottom: 10px;
    border-left: 4px solid #3182ce;
    padding-left: 10px;
}
.form-group {
    margin-bottom: 8px;
}

.two-column-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}

.two-column-group .form-group {
  flex: 0 0 48%;
  box-sizing: border-box;
  margin-bottom: 0;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #494949;
}

input[type="text"],
input[type="number"],
input[type="date"],
select{
    font-size: 12px;
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #494949;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus {
    outline: none;
    border-color:#3182ce;
}

/* Identity Document Container */
.group {
   margin-bottom: 15px;
}
#identity-document-container{
    padding: 0 20px;
}

/* Buttons */
.add-info-button {
    font-size: 12px;
    padding: 7px;
    color: #3182ce;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    cursor: pointer;
}
.add-info-button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}
.add-info-button:not(:disabled):hover {
    background-color: #eaeaea;
}


.delete-button-box {
    display: flex;
    justify-content: flex-end;
}
.delete-info-button {
    font-size: 12px;
    padding: 6px;
    color: #3182ce;
    font-weight: bold;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    cursor: pointer;
}
.delete-info-button:hover {
    background-color: #eaeaea;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
}

.nav-button {
    padding: 7px 12px;
    border: none;
    border-radius: 4px;
    background: #3182ce;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}
.navigation.single-right {
    justify-content: flex-end;
}
.nav-button:hover {
    background: #2b6cb0;
}

/* Media Queries */
@media (max-width: 768px) {
    .two-column-group .form-group {
        flex: 0 0 100%;
    }
    .navigation {
        gap: 10px;
    }
    .nav-button {
        width: 100%;
    }
}
