body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding-top: 100px;
  /* space for fixed header */
  background: #f5f7fa;
}

header,
footer {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.logo {
  height: 55px;
}
.links{
      width: 271px!important;
      margin-left: 40px !important;
}
/* MAIN */
.main-wrapper {
  padding-top: 20px;
  padding-bottom: 60px;
  min-height: 540px;
}
.colorChange{
  color: #000 !important;
  font-size: 14px!important; ;
}
/* CARD */
.verify-card {
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: none;
  margin-bottom: 50px;
}

/* FIELDS */
.fade-field {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.fade-field.active {
  max-height: 140px;
  opacity: 1;
  margin-bottom: 1rem;
}

/* HOVER */
.hover-word {
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.hover-word:hover {
  color: #1c77ad;
  transform: scale(1.05);
}

/* OUTPUTS */
#record {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
}

#record table {
  width: 100%;
  border-collapse: collapse;
}

#record td {
  padding: 6px 10px;
  vertical-align: top;
}

#message {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.success-msg {
  color: #166534;
  background-color: #dcfce7;
}

.error-msg {
  color: #de2626;
  background-color: #fee2e2;
}

@media (max-width:430px) {
  .smalltext{
    font-size: 12px !important;
  }
  .smallHead{
    font-size: 14px !important;
  }
  .container-top{
    margin-top: 30px !important;
  }
}