/* Kargo Takip sayfası */
.tracking-page-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  padding: 40px 20px;
}

.vk-track-card {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 28px;
  min-height: 560px;
  border: 1px solid #e8eef6;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vk-track-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
}

.vk-track-title {
  margin: 0 0 26px;
  font-size: 26px;
  font-weight: 800;
  color: #222;
}

.vk-track-input {
  width: 100%;
  max-width: 520px;
  height: 56px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 16px;
  background: #f5f8fb;
  outline: none;
}

.vk-track-input:focus {
  border-color: #18ccff;
  box-shadow: 0 0 0 3px rgba(24, 204, 255, 0.18);
  background: #fff;
}

.vk-track-btn {
  display: inline-block;
  margin-top: 22px;
  height: 46px;
  min-width: 180px;
  border: 0;
  border-radius: 10px;
  background: #18ccff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.vk-track-btn:hover {
  filter: brightness(0.95);
}

@media (max-width: 768px) {
  .tracking-page-container {
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    padding: 20px 14px;
  }

  .vk-track-card {
    padding: 50px 20px;
    min-height: auto;
  }

  .vk-track-logo {
    height: 60px;
  }

  .vk-track-title {
    font-size: 22px;
  }
}