/* Sukien Component Styles */

/* Custom checkbox visual styles */
.custom-checkbox-visual {
  width: 25px;
  height: 25px;
  background-color: #d9d9d9;
  border: none;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease-in-out;
  margin-right: 20px;
}

/* Checkmark style */
.custom-checkbox-visual .checkmark-symbol {
  color: #fff !important;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* When the hidden input is checked, style the custom visual checkbox */
input[type="checkbox"]:checked+label .custom-checkbox-visual {
  background-color: #d72323;
}

/* When the hidden input is checked, show the checkmark */
input[type="checkbox"]:checked+label .custom-checkbox-visual .checkmark-symbol {
  color: #fff !important;
  opacity: 1;
}

/* Main container */
.sukien-container {
  padding-top: 0;
  max-width: 1440px;
  height: 3500px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}

/* Top contact info */
.sukien-contact-info {
  background-color: #ffffff;
  color: #000;
  padding: 8px 20px;
  font-size: 16px;
  font-family: Inter, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 491px;
  height: 39px;
  margin-left: 17px;
  margin-bottom: 10px;
}

.sukien-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sukien-contact-icon {
  width: 20px;
  height: 16px;
}

.sukien-contact-icon-phone {
  width: 16px;
  height: 16px;
}

/* Main event frame */
.sukien-main-frame {
  width: 1387px;
  height: 911px;
  margin: 150px auto 0 auto;
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Event title */
.sukien-title {
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  width: 133px;
  height: 54px;
  line-height: 54px;
  margin: 0;
}

/* Subtitle */
.sukien-subtitle {
  position: absolute;
  top: 117px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 239px;
  height: 36px;
  line-height: 36px;
  margin: 0;
}

/* Search frame */
.sukien-search-frame {
  position: absolute;
  top: 105px;
  right: 17px;
  width: 350px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #ffffff;
}

.sukien-search-input {
  flex-grow: 1;
  height: 100%;
  padding: 0 15px 0 40px;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
}

.sukien-search-button {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 100%;
  border: none;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sukien-search-icon {
  width: 20px;
  height: 20px;
}

/* Event details frame */
.sukien-event-details {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1386px;
  height: 660px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  gap: 30px;
}

.sukien-event-image {
  width: 647px;
  height: 660px;
  border-radius: 60px;
  object-fit: cover;
}

.sukien-event-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 756px;
  height: 660px;
  background-color: #ffffff;
  color: #000000;
  padding: 40px;
  border-radius: 30px;
  border-right: 3px solid #D72323;
  border-bottom: 3px solid #D72323;
}

.sukien-event-title {
  width: 682px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 54px;
}

.sukien-event-info {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin-bottom: 22px;
}

.sukien-event-info-bottom {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  margin-bottom: 46px;
}
.sukien-event-info-bottom strong {
  font-weight: 700;
}

.sukien-event-description {
  width: 674px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
  margin-bottom: 32px;
}
.sukien-event-description strong {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.sukien-event-list {
  width: 668px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  list-style-type: disc;
  padding-left: 30px;
  margin: 0 0 20px 0;
}

.sukien-register-button {
  background: #D72323;
  color: #fff;
  border-radius: 92.177px;
  border: 1.536px solid #D72323;
  padding: 15.502px;
  font-size: 27.653px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 41.48px */
  cursor: pointer;
  display: flex;
  width: 373.316px;
  height: 84.495px;
  justify-content: center;
  align-items: center;
  gap: 15.36px;
  flex-shrink: 0;
  align-self: center;
  margin-top: 30px;
  margin-bottom: 29.5px;
}

.sukien-register-arrow {
  display: flex;
  align-items: center;
  height: 100%;
}

/* News and Events container */
.sukien-news-container {
  width: 1298px;
  height: 1759px;
  background-color: #ffffff;
  position: absolute;
  top: 950px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 32px;
}

/* THD Logo section */
.sukien-logo-section {
  position: absolute;
  left: 121px;
  top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
}

.sukien-logo {
  width: 459px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Event cards */
.sukien-event-card {
  box-sizing: border-box;
  position: absolute;
  width: 570px;
  height: 771px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sukien-event-card-ransomware {
  top: 59px;
  right: 0;
}

.sukien-event-card-strategy {
  top: 450px;
  left: 64px;
}

.sukien-event-card-lessons {
  top: 920px;
  right: 0;
}

.sukien-card-title {
  position: absolute;
  top: -25px;
  left: 79px;
  width: 412px;
  height: 84px;
  font-size: 28px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #000000;
  font-family: Inter, sans-serif;
}

.sukien-card-description {
  position: absolute;
  top: 119px;
  left: 0;
  width: 570px;
  height: 40px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #000000;
  font-family: Inter, sans-serif;
  margin-bottom: 4px;
}

.sukien-card-image {
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  height: 417px;
  object-fit: cover;
}

.sukien-card-meta {
  position: absolute;
  top: 590px;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 16px;
  color: #222;
  justify-content: space-around;
}

.sukien-card-meta-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 16px;
  color: #222;
  align-items: flex-start;
}

.sukien-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sukien-meta-icon {
  width: 24px;
  height: 24px;
}

.sukien-card-link {
  position: absolute;
  bottom: -5px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  color: #e53935;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 24px;
  font-size: 20px;
  height: 44px;
  line-height: 44px;
}

.sukien-card-arrow {
  font-size: 1.5em;
  display: flex;
  align-items: center;
  height: 100%;
}

.sukien-card-link:hover {
  color: #b71c1c;
  /* Bỏ hiệu ứng transform dịch chuyển sang phải */
  /* transform: translateX(5px); */
  transition: color 0.2s ease;
}

/* Map image */
.sukien-map {
  position: absolute;
  top: 1250px;
  left: 165.01px;
  width: 441.99px;
  height: 518px;
  object-fit: contain;
  border-radius: 8px;
}

/* Registration frame */
.sukien-registration-frame {
  position: absolute;
  top: 1868px;
  left: 50%;
  transform: translateX(-50%);
  width: 1216px;
  height: 588px;
  border-radius: 100px;
  border: 5px solid #D72323;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sukien-registration-title {
  width: 510px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  margin-top: -20px;
}

.sukien-input-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 997px;
  margin-bottom: 30px;
  gap: 40px;
  margin-top: 30px;
}

.sukien-input-group {
  position: relative;
  width: 476px;
  height: 63px;
}

.sukien-input-label {
  position: absolute;
  top: -7px;
  left: 10px;
  background-color: #fff;
  padding: 0 5px;
  font-size: 14px;
  color: #555;
  font-weight: bold;
}

.sukien-input-field {
  width: 100%;
  height: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid #000;
  font-size: 16px;
  box-sizing: border-box;
  color: #000000;
}

.sukien-checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 15px;
}

.sukien-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

.sukien-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
}

.sukien-divider {
  width: 583px;
  height: 1.5px;
  background-color: #000000;
  margin-bottom: 30px;
}

.sukien-submit-button {
  background-color: #000;
  color: #fff;
  width: 373px;
  height: 84px;
  border-radius: 92px;
  border: none;
  font-size: 27.653px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 41.48px */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.sukien-submit-arrow {
  font-size: 1.5em;
}

/* Footer spacer */
.sukien-footer-spacer {
  position: relative;
  width: 100%;
  margin-top: 2600px;
}

.sukien-event-info strong {
  font-weight: 700;
}
.sukien-event-info {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin-bottom: 22px;
}
.sukien-event-info {
  font-weight: 300;
}
.sukien-event-info strong {
  font-weight: 700;
}

.sukien-event-description.sukien-doituong {
  width: 668px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
  margin-bottom: 32px;
}