@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden; /* Prevents scrolling */
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
  color: #fff;
  width: 100%;
  max-width: 500px;
}

textarea,
input[type="file"],
button {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 1em;
  background-color: #000;
  color: #fff;
}

textarea,
input[type="file"] {
  height: 40px; /* Ensure the input fields are of the same height */
}

textarea:focus,
input[type="file"]:focus,
button:focus {
  outline: none;
  border-color: #007bff;
}

.submit-button {
  width: 150px; /* Smaller submit button */
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 10px;
}

.submit-button:hover {
  background-color: #fff;
  color: #000;
}

.result-container {
  width: 100%;
  max-width: 500px; /* Ensure result container is of the same width */
  margin-top: 30px;
  padding: 20px;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 10px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.result-container h2 {
  margin-top: 0;
  font-size: 1.5em;
  border-bottom: 1px solid #6c757d;
  padding-bottom: 10px;
  color: #fff;
}

.result-container p {
  white-space: pre-wrap;
  color: #fff;
}

















  