/*html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  background-image: url('https://raw.githubusercontent.com/Nakul-Sinha/LoTM_Ascension/main/Fragments_of_Life-Me_and_Myself%20(1).jpg');*/

 /*
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Arial, sans-serif;
  color: white;
}*/

/* Center content in the middle of the screen */
/*body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}*/

/* Headings and labels */
/*h1, label {
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}
*/
/* Inputs */
/*input {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

input, button {
  background: rgba(255, 255, 255, 0.1); /
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px); 
  color: #fff;
  box-shadow: 0 0 10px rgba(0,255,255,0.3); 
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  transition: 0.3s ease;
}*/

/*
button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0,255,255,0.6);
}


#result {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
}


.error {
  color: red;
}

.success {
  color: limegreen;
}*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  background-image: url('https://raw.githubusercontent.com/Nakul-Sinha/LoTM_Ascension/main/Fragments_of_Life-Me_and_Myself%20(1).jpg');

  /*background-image: url('https://raw.githubusercontent.com/Nakul-Sinha/LoTM_Ascension/main/stars-in-sky-galaxy-6960x4645-15601.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Arial, sans-serif;
  color: black; /* changed to black */
}

/* Center content in the middle of the screen */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Headings and labels */
h1, label {
  color: black; /* changed to black */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  font-weight: bold;
}
.shard-container {
  background: rgba(0, 0, 0, 0.5); /* translucent black */
  border-radius: 15px;
  padding: 30px;
  max-width: 450px;
  margin: 100px auto; /* centers horizontally with top spacing */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}


/* Inputs */
input {
  width: 400px;        /* fixed shorter width */
  max-width: 90%;      /* responsive for small screens */
  padding: 0.5rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* Inputs and button effects */
input, button {
  background: rgba(0, 0, 0, 0.6); /* darker translucent background */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px); /* glass effect */
  color: gray; /* text inside inputs and button is black */
  box-shadow: 0 0 10px rgba(0,255,255,0.3); /* glowing edge */
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  transition: 0.3s ease;
}

/* Button hover effect */
button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0,255,255,0.6);
}

/* Result output */
#result {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
}

/* Success and error colors */
.error {
  color: red;
}

.success {
  color: limegreen;
}

