/* === PINEAPL REGISTER PAGE: GENTLE THROWBACK EDITION === */

body {
  margin: 0;
  padding: 0;
  font-family: 'Verdana', sans-serif;
  background: white url('register.gif') center center fixed no-repeat;
  background-size: cover;
  color: #fdfdfd;
}

form {
  background: rgba(25, 25, 25, 0.88);
  border: 2px solid #00ffcc;
  padding: 30px;
  width: 360px;
  margin: 80px auto;
  border-radius: 16px;
  box-shadow: 0 0 20px #00ffee;
  backdrop-filter: blur(3px);
}

h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #00ffff;
  text-shadow: 1px 1px 4px #000;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 92%;
  padding: 10px;
  margin-bottom: 14px;
  border: 2px solid #00ffff;
  border-radius: 6px;
  background: #000;
  color: #0ff;
  font-size: 14px;
  box-shadow: inset 0 0 5px #00ffff;
}

button {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #00ffff, #0066cc);
  color: #000;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 8px #00ffee;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(to right, #00ffee, #00aaff);
}