
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


body {
  background: linear-gradient(135deg, #fff7f0, #ffe8d6);
}


.track-container {
  max-width: 420px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.track-container h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}


.track-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.track-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}


.track-form input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}


.track-form input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}


.track-form p {
  font-size: 13px;
  color: #999;
  position: relative;
}


.track-form p::before,
.track-form p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.track-form p::before {
  left: 0;
}

.track-form p::after {
  right: 0;
}


.track-form button {
  padding: 14px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.3);
}


.track-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}


.track-form button:active {
  transform: scale(0.97);
}


@media (max-width: 768px) {
  .track-container {
    margin: 60px 20px;
    padding: 30px 20px;
  }
}


@media (max-width: 480px) {
  .track-container {
    margin: 40px 15px;
    padding: 25px 15px;
  }

  .track-container h2 {
    font-size: 22px;
  }

  .track-form input {
    font-size: 13px;
    padding: 12px;
  }

  .track-form button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}