
html, body, * {
  cursor: url("https://cyberdreamsshop.neocities.org/assets/cursor.png"), auto;
}

body {
  min-height: 100vh;
  margin: 0;
  background-image: url("https://cyberdreamsshop.neocities.org/assets/bg2.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow-y: auto;
}

/* --- FORM CONTAINER --- */
.form-container {
  position: relative;
  width: 800px;
  max-width: 95%;
  margin: 50px auto 0 auto;
}

.form-image {
  width: 100%;
  display: block;
}

/* --- NAME INPUT --- */
.input-name {
  position: absolute;
  top: 140px;
  left: 110px;
  width: 380px;
  height: 30px;
  border: none;
  background: transparent;
  color: black;
  font-size: 20px;
  outline: none;
  padding: 0;
  line-height: 30px;
  box-sizing: border-box;
}

.input-name {
  font-family: 'Lucida Console', sans-serif;
}

/* --- EMAIL INPUT --- */
.input-email {
  position: absolute;
  top: 260px;  /* below name input */
  left: 110px;
  width: 380px;
  height: 30px;
  border: none;
  background: transparent;
  color: black;
  font-size: 20px;
  outline: none;
  padding: 0;
  line-height: 30px;
  box-sizing: border-box;
}

.input-email {
  font-family: 'Lucida Console', sans-serif;
}


/* --- MESSAGE TEXTAREA --- */
.input-message {
  position: absolute;
  top: 370px;  /* moved slightly down to fit email field */
  left: 105px;
  width: 550px;
  height: 300px;
  border: none;
  background: transparent;
  color: black;
  font-size: 20px;
  outline: none;
  padding: 10px;
  line-height: 1.2em;
  resize: none;
  box-sizing: border-box;
}

.input-message {
  font-family: 'Lucida Console', sans-serif;
}

/* --- SUBMIT BUTTON --- */
.submit-btn {
  position: absolute;
  top: 665px; /* adjusted to move up slightly for new layout */
  left: 300px;
  width: 200px;
  height: 100px;
  background: url('https://cyberdreamsart.neocities.org/assets/SB.png') no-repeat center/cover;
  border: none;
  cursor: url("https://cyberdreamsshop.neocities.org/assets/cursor.png") 16 16, pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 480px) {
  .form-container {
    width: 100%;
    margin: 20px auto;
  }
  
  .input-name,
  .input-email,
  .input-message {
    color: #00000;      /* bright white text for better visibility */
    text-shadow: 0 0 3px rgba(0,0,0,1.5); /* subtle shadow for readability */
  }

  .input-name {
    top: 55px;
    left: 60px;
    width: calc(110% - 80px);
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }

  .input-email {
    top: 115px;
    left: 60px;
    width: calc(100% - 40px);
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }

  .input-message {
    top: 180px;
    left: 50px;
    width: calc(100% - 40px);
    height: 200px;
    font-size: 15px;
    padding: 10px;
    line-height: 1.2em;
  }

  .submit-btn {
    top: 330px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
  }
  
}

/* --- TABLET RESPONSIVE --- */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .form-container {
    width: 90%;              /* fit nicely on tablet */
    margin: 40px auto;
  }

  .input-name {
    top: 85px;
    left: 80px;
    width: 400px;
    height: 35px;
    font-size: 25px;
    line-height: 35px;
  }

  .input-email {
    top: 160px;
    left: 80px;
    width: 400px;
    height: 35px;
    font-size: 25px;
    line-height: 35px;
  }

  .input-message {
    top: 250px;
    left: 73px;
    width: calc(100% - 60px);
    height: 250px;
    font-size: 25px;
    padding: 10px;
    line-height: 1.2em;
  }

  .submit-btn {
    top: 420px;  /* adjusted for tablet layout */
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 90px;
  }

  /* Make text more visible on tablets */
  .input-name,
  .input-email,
  .input-message {
    color: #000000; /* black text for tablet */
  }
}

