*{
    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: 800px;
    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: 5px 0 0;
}

/* ID Form Selector */
#natural_person_id_form {
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #514f4f;
    /* display: none; */

}
#natural_person_id_form select {
    font-size: 12px;
    color: #514f4f;
    padding: 4px 12px;
    border: 1px solid #514f4f;
    border-radius: 3px;
}
#natural_person_id_form button {
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    background: #3182ce;
    color: #fff;
    cursor: pointer;
}
#natural_person_id_form button:hover {
    background-color: #2d78be;
}

/* Info Container */
.info-container {
    display: none;
    color: #514f4f;
    font-size: 12px;
}
strong {
    font-weight: 500;
}
fieldset {
    border: 1px solid #3182ce;
    border-radius: 4px;
    margin: 10px 0;
    padding: 3px 15px 10px;
}
legend {
    color: #3182ce;
    padding: 0 6px;
    font-weight: 500;
}

.two-column-group {
  display: flex;
  flex-wrap: wrap;
}
.two-column-group div {
    flex: 0 0 48%;
    box-sizing: border-box;
}
.info-section {
    padding-bottom: 10px;
}
.field {
  padding-top: 5px;
}
.identity-document-group {
    padding-left: 10px;
    padding-bottom: 5px;
}

/* Loader  */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 5px solid #ccc;
  border-top: 5px solid #3182ce;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
    .two-column-group div {
        flex: 0 0 100%;
    }
}