body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  width: 320px;
}

.logo {
  width: 80px;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

form input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  width: 100%;
  padding: 10px;
  background-color: #ccc;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.warning {
  font-size: 0.8em;
  color: #666;
  margin-top: 15px;
}

.links {
  margin-top: 10px;
  font-size: 0.9em;
}

footer {
  margin-top: 20px;
  font-size: 0.8em;
}

.captcha-note {
  font-size: 0.75em;
 
  color: #999;
  margin-top: 10px;
}

.terms-box {
  max-height: 600px;
  overflow-y: auto;
  text-align: left;
}

.dialpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.dialpad button {
  padding: 20px;
  font-size: 1.5em;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.call {
  background-color: green;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.hangup {
  background-color: red;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.menu-icon {
  font-size: 2em;
  float: right;
  margin: 10px;
  cursor: pointer;
}

.echo {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

#menuIcon {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}
