@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Heebo', sans-serif;
  background: radial-gradient(circle at top, #0b1a2d, #000);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 60, 255, 0.2);
}

.logo {
      width: 300px;
}

h1 {
  font-size: 1.8rem;
  color: #00aaff;
}

p {
  color: #ccc;
}

.contact-form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  text-align: right;
}

.contact-form input::placeholder {
  color: #aaa;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
    float: right;
    width: 105%;
}

.contact-form button:hover {
  background: #0056b3;
}

#response {
  margin-top: 15px;
  color: #0f0;
  font-size: 0.9rem;
}