body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
  background: rgb(20, 20, 20);
  padding: 30px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(7, 6, 6, 0.05);
  text-align: center;
  width: 500px;
}

.logo {
  width:300px;
  margin-bottom: 30px;
}

h1 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #fffefe;


}
p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}

button {
  background: linear-gradient(90deg, #4A00E0, #8E2DE2);
  color: white;
  border: none;
  padding: 20px 34px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.8;
}