/* ─── RESET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── BODY ─── */
body {
  font-family: 'Segoe UI', sans-serif;
  /* background: linear-gradient(135deg, #fdf8f2, #f4ece0); */
  background-image: url(mockuuups-oSIC4MBs5dc-unsplash.jpg);
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── MAIN BOX ─── */
.box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 15px 40px rgba(91, 58, 25, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(201,168,130,0.3);
  backdrop-filter: blur(10px);
}


.box:hover {
  transform: translateY(-5px);
}

/* ─── HEADING ─── */
.box h2 {
  margin-bottom: 20px;
  color: #5c3d1e;
}

/* ─── INPUTS ─── */
input, select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  border: 1px solid #e8d9c5;
  outline: none;
  font-size: 14px;
  background: #fdf8f2;
  transition: 0.3s;
}

input:focus, select:focus {
  border-color: #8b6340;
  background: #fff;
}

/* ─── BUTTON ─── */
button {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: #5c3d1e;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #8b6340;
  transform: translateY(-2px);
}

/* ─── RESULT ─── */
#result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: #f4ece0;
  color: #2e1e0f;
  font-weight: 500;
  animation: fadeIn 0.5s ease;
}

/* ─── RESULT TEXT ─── */
#result h3 {
  margin-bottom: 8px;
}

#result p {
  font-size: 14px;
  margin: 4px 0;
}

/* ─── ANIMATION ─── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}