body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.wrapper {
  max-width: 400px;
  width: 90%;
}

.card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  text-align: center;
}

.logo {
  width: 120px;
  margin-top: 30px; /* Adjust this value as needed */
  margin-bottom: 30px;
}

input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

button {
  background: #1abc9c;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #16a085;
}

#status {
  margin-top: 15px;
  font-size: 14px;
  color: #ddd;
}
