@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
@import url("https://use.fontawesome.com/releases/v6.5.1/css/all.css");

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #1e1e2e;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
}

.box {
  position: relative;
  width: 450px;
  background: linear-gradient(135deg, #ff2770, #45f3ff);
  filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.5));
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  animation: pulse 3s infinite alternate;
  font-size: 1.6em;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.dashboard {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

.dashboard h2 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 15px;
}

input[type="file"] {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

input[type="submit"] {
  background: #45f3ff;
  color: #111;
  border: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background: #32e3ff;
  transform: scale(1.05);
}

.result-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  color: #fff;
  text-align: left;
}

.result-box p {
  margin: 8px 0;
  font-size: 14px;
  color: #ddd;
}

strong {
  color: #ff2770;
}
h3{
  color: aliceblue;
}