/* ✅ Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ✅ Fullscreen background (blur + dark overlay) */
body {
  background: url('https://picsum.photos/1600/900?blur') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔲 Overlay layer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 💬 Modal box */
.modal {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ✅ Heading */
.modal h2 {
  text-align: center;
  color: #28a745;
  margin-bottom: 20px;
}

/* ✅ Input Fields */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ✅ Button */
button {
  width: 100%;
  background: #28a745;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1e7e34;
}

/* ✅ Link text */
p {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
