.city-selection-container {
  min-height: calc(100dvh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.city-selection-card {
  margin-top: 130px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  padding: 40px;
  animation: slideUp 0.5s ease-out;
}

@media screen and (max-width: 800px) {
  .city-selection-card {
    margin-top: 70px;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.card-header p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.current-selection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #065f46;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 12px;
}

.current-selection svg {
  fill: #065f46;
}

.city-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.form-group label svg {
  fill: #6b7280;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #1f2937;
  transition: all 0.2s;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit svg {
  fill: white;
}

.info-section {
  margin-top: 24px;
  padding: 16px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-section svg {
  flex-shrink: 0;
  fill: #6b7280;
  margin-top: 2px;
}

.info-section p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .city-selection-card {
    padding: 24px;
  }

  .card-header h1 {
    font-size: 24px;
  }

  .card-header p {
    font-size: 14px;
  }
}
