/* ============================================================
   Landing / Index Page Styles
   Used by: resources/views/index.blade.php
   ============================================================ */
.error-toast-wrapper {
  position: fixed;
  top: 16px;
  left: max(24px, calc(50% - 226px));
  z-index: 9999;
  animation: toast-in 0.3s ease;
}
.error-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e2222a;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(226, 34, 42, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-block {
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}
.regis-section {
  padding: 32px 24px 16px 24px;
}
.modal-title {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
.term-content {
  height: 555px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid var(--System-Grey, #e7e7e7);
  padding: 16px;
}
.modal-footer {
  border-top: none;
}
.term-detail {
  color: var(--Black-100, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.form-check-label {
  color: var(--Black-100, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.btn-line {
  background: #58d262;
  color: #fff;
  font-weight: 700;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 48px;
  border-radius: 8px;
}
.btn-line:hover {
  background: #4cc656;
  color: #fff;
}
.btn-icon {
  padding: 0 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon img {
  width: 32px;
  height: auto;
}
.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
