* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI';
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.card {
  position: relative;
  z-index: 1;
  max-width: 80%;
  height: 85vh;
  margin: 50px auto;
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

#phoneInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #dfa150;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

button:hover {
  background-color: #dc861f;
}

#results {
  margin-top: 20px;
  text-align: left;
  color: #333;
  overflow-y: auto;
  max-height: 100%;
  padding-right: 5px;
}

#results p {
  margin-bottom: 10px;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
}
