body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #1c1c1c;
  border: 2px solid #2ee5ab;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 20px rgba(46, 229, 171, 0.4);
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2ee5ab;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: none;
  background: #333;
  color: #f2f2f2;
}

button {
  padding: 0.7rem;
  background: #2ee5ab;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #23c698;
}

.radar {
  text-align: center;
  margin-top: 2rem;
}

.pulse {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #2ee5ab;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

#clients-log {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 100px;
  transition: all 0.3s ease;
}

.icon-wrapper {
  text-align: center;
  margin-bottom: 1rem;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 20%;
}

.info-links {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.info-links a {
  color: #2ee5ab;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.info-links a:hover {
  color: #ffffff;
}
