body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  margin: 0;
  background-color: white; /* optional: setting background color */
  padding-top: 3.3rem;
}

input[type="text"] {
  height: 15rem;
  width: 45rem;
  border-radius: 5px;
  border-color: #FFA500;
  margin-bottom: 3rem;
  font-size: 1rem; /* Adjust font size as needed */
}

input[type="text"]::placeholder {
  position: relative;
  top: -5.5rem; /* Adjust as needed */
  
}


button {
  width: 250px; /* Adjust width as needed */
  height: 50px; /* Adjust height as needed */
  border: 1px solid purple ; /* Optional: add border for better visibility */
  border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  background-color: white;
}

/* Optional: Center the content inside the body */
div {
  text-align: center;
}

span {
  color: #ff00ff;
}

.unlock-fingerprint {
  width: 250px; /* Adjust width as needed */
  height: 50px; /* Adjust height as needed */
  background-color: purple;

  border-radius: .5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.jojotext {
  color: white;
  font-size: 1rem;
}

/* mq */

@media only screen and (max-width: 768px) {
  input[type="text"] {
    width: 80%; /* Adjust width for smaller screens */
    height: 10rem; /* Adjust height for smaller screens */
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }

  input[type="text"]::placeholder {
    top: -3rem; /* Adjust as needed */
  }

  button, .unlock-fingerprint {
    width: 80%; /* Adjust width for smaller screens */
    height: 40px; /* Adjust height for smaller screens */
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }
}

@media only screen and (max-width: 480px) {
  input[type="text"] {
    width: 80%; /* Adjust width for even smaller screens */
    height: 8rem; /* Adjust height for even smaller screens */
    font-size: 1rem; /* Adjust font size for even smaller screens */
  }

  button{
  width: 100px; /* Adjust width as needed */
  height: 50px; /* Adjust height as needed */
 
  background-color: white;
  }

  input[type="text"]::placeholder {
    top: -2rem; /* Adjust as needed */
  }

  button, .unlock-fingerprint {
    width: 90%; /* Adjust width for even smaller screens */
    height: 50px; /* Adjust height for even smaller screens */
    font-size: 0.7rem; /* Adjust font size for even smaller screens */
  }
}

.writeup-container {
  text-align: left;
  max-width: 600px; /* Adjust the maximum width as needed */
  margin: 0 auto; /* Center the container */
  padding: 0 35px; /* Add padding for spacing */
 /* border: 1px solid #ccc;  Optional border styling */
}

body {
    /*font-family: 'Roboto', sans-serif;  */
  }