/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
} */

.body-checkin {
  min-height: 100vh;
  /* background: linear-gradient(180deg, #eef9f3, #e5f4ed); */
   background: #eaf3f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-wrapper {
  width: 100%;
  padding: 20px;
}

.card-checkin {
  /* max-width: 800px; */
  width: 100%;
  margin: auto;
  background: #eaf3f8;
  border-radius: 24px;
  padding: 40px 36px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  text-align: left;
}

.logo img {
  height: 40px;
  margin-bottom: 24px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1b7f3a;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
}

.login-btn {
  background: #3aaa35;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(58, 170, 53, 0.35);
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #2f8f2b;
  transform: translateY(-1px);
}

.redirect-note {
  margin-top: 14px;
  font-size: 13px;
  color: #888;
}

.version {
  margin-top: 28px;
  font-size: 12px;
  color: #999;
}


/* ########################Border With Text############ */
.section-box {
  position: relative;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  padding: 30px 20px 20px;
  background: #eaf3f8;
  width: 100%!important;
}

.section-title {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #eaf3f8;
  padding: 0 10px;
  font-size: 28px;
  font-weight: 600;
  color: #374151;
}

/* ###############COnfirmation */

.details-list {
  max-width: 720px;
  margin: 0 auto;
}

.detail-row {
  display: grid;
  grid-template-columns: 260px 1fr 30px; /* 👈 FIXED LABEL WIDTH */
  align-items: center;
  padding: 8px 0;
}

.label {
  color: #6b7280;
  font-weight: 500;
  text-align: left;
}

.value {
  color: #162B51;
  font-weight: 500;
  text-align: left;   /* 👈 IMPORTANT */
}

.status {
  text-align: right;
}
.details-list{
    font-size: 20px;
}
.text-success2{
  color: #39BD4D!important;
}
.text-warning2{
    color: #FF6500!important;
}
