@keyframes borderGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes neuralMove {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
@keyframes cardHover {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
body {
  background: #0a0b1f;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.member-card {
  width: 85.6mm;
  height: 53.98mm;
  background: rgba(31, 36, 85, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 97, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 36, 85, 0.37);
  position: relative;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.member-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #1f2455, #0a0b1f);
  z-index: -1;
  border-radius: inherit;
  animation: borderGlow 3s ease infinite;
}
.member-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #9da1ff 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: neuralMove 15s linear infinite;
}
.member-card:hover {
  animation: cardHover 1s ease infinite;
}
.member-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #5961ff;
  box-shadow: 0 0 10px rgba(89, 97, 255, 0.5);
  object-fit: cover;
}
.member-card__info {
  margin-left: 1rem;
}
.member-card__info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #9da1ff;
  text-shadow: 0 0 5px rgba(157, 161, 255, 0.5);
}
.member-card__info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.member-card__qr {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem;
  background: rgba(89, 97, 255, 0.1);
  border-radius: 5px;
}
.member-card__qr img {
  width: 60px;
  height: 60px;
}

.table-container {
  background: rgba(31, 36, 85, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 97, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 36, 85, 0.37);
  border-radius: 15px;
  overflow: hidden;
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  background: rgba(89, 97, 255, 0.1);
  color: #9da1ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  text-align: left;
}
.table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(157, 161, 255, 0.1);
}
.table tr:hover {
  background: rgba(89, 97, 255, 0.05);
}

.btn {
  background: linear-gradient(135deg, #1f2455, #0a0b1f);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #1f2455, #0a0b1f);
  z-index: -1;
  border-radius: inherit;
  animation: borderGlow 3s ease infinite;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(89, 97, 255, 0.5);
}
.btn--primary {
  background: linear-gradient(45deg, #5961ff, #9da1ff);
}

.form {
  background: rgba(31, 36, 85, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 97, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 36, 85, 0.37);
  padding: 2rem;
  border-radius: 15px;
}
.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  color: #9da1ff;
}
.form__input {
  width: 100%;
  padding: 0.8rem;
  background: rgba(31, 36, 85, 0.3);
  border: 1px solid rgba(157, 161, 255, 0.2);
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.form__input:focus {
  outline: none;
  border-color: #5961ff;
  box-shadow: 0 0 10px rgba(89, 97, 255, 0.5);
}

.attestation {
  background: rgba(31, 36, 85, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 97, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 36, 85, 0.37);
  padding: 3rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}
.attestation__header {
  margin-bottom: 2rem;
}
.attestation__header h1 {
  color: #9da1ff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.attestation__content {
  margin: 2rem 0;
  line-height: 1.8;
}
.attestation__content p {
  margin-bottom: 1rem;
}
.attestation__signature {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.attestation__signature .signature-box {
  text-align: center;
  flex: 1;
  max-width: 200px;
}
.attestation__signature .signature-box__line {
  width: 100%;
  height: 1px;
  background: #9da1ff;
  margin: 1rem 0;
}
.attestation__signature .signature-box__title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/*# sourceMappingURL=style.css.map */
