


/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch targets for better mobile UX */
@media (pointer: coarse) {
  button,
  input,
  select,
  a {
    min-height: 44px;
  }
}

.step1 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  z-index: 888;
}

.step2 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  z-index: 999;
}


.logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding-top: 0px;
  font-size: 1.9rem;
  color: #bbb;
  font-family: Arial, Helvetica, sans-serif;
}

.logo-area span {
    font-weight: bold;
    color: #fff;
}

.page-title {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  padding: 20px;
  height: 10%;
  color: #aaa;
}

.btn-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.btn-area button {
  width: 100%;
  border: none;
  font-size: 1rem;
  color: #fff;
  background: #555;
  border-radius: 12px;
  font-weight: bold;
  padding: 18px;
}

.more {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 60px;
  gap: 12px;
}

.alert1 {
  font-size: 1rem;
  color: #bbb;
}

a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}



.inputs-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input input {
  background-color: #333;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #fff;
}

.input input:focus {
  outline: none;
}


.create-area {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-area1 {
  height: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-are2 {
  height: 14%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-top {
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
}

.nav-top button {
  height: 40px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  gap: 4px;
}

.nav-top svg {
  height: 20px;
  width: 20px;
  fill: currentColor;
}


























.step1 {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step2 {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.step1.hidden {
  transform: translateX(-100%);
}

.step2.visible {
  transform: translateX(0);
}

.input select {
  background-color: #333;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #fff;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.input select option {
  background: #333;
  color: #fff;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #888;
  pointer-events: none;
}

input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #F1F1F1;
  -webkit-box-shadow: 0 0 0px 1000px #333 inset;
  transition: background-color 5000s ease-in-out 0s;
};