@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  outline: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
}

h1 {
  color: #fff;
}

body {
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a192f;
}

header {
  padding: 1rem 0.25rem;
  font-size: 14px;
  text-align: center;
}
header h1 {
  font-size: 28px;
  margin-bottom: 0.5rem;
}
header span {
  font-family: monospace;
  border-radius: 0.25rem;
  display: inline-block;
  padding: 0.25rem;
  margin: 0 0.25rem;
  background-color: #cce5ff;
  color: #007bff;
  font-weight: 700;
}

.container {
  width: 30%;
  padding: 2rem;
  background-color: #112240;
  border-radius: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.input-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.25rem;
}

input[type=number],
input[type=text] {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.5rem;
  border: 2px solid #1c3768;
  border-radius: 0.25rem;
  color: #fff !important;
  font-size: 16px;
}

input:focus {
  border: 2px solid #007bff !important;
}

footer {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 60%;
  }
}
@media screen and (max-width: 425px) {
  .container {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */