* {
  font-family: 'Roboto', 'Arial', 'Verdana', sans-serif;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  min-height: 100%;
  width: 100%;
}

body {
  /* margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto; /* allow scroll on small screens */
  padding: 2rem 0; /* top-bottom breathing space */
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 35rem;
  padding: 2rem;
  border: 1px solid #000;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-bottom: 2.5rem;
}

.heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #000;
  border-radius: 0.25rem;
  font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #000;
  border-radius: 0.25rem;
  font-size: 1rem;
}


button {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

button:hover {
  background-color: #333;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 0.2rem; /* aligns better with label text */
  flex-shrink: 0;
}

.checkbox-container label {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}


.container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1rem 0;    /* Adds bottom space, tweak if needed */
  border-radius: 0.5rem;  /* Optional: rounded corners for better look */
  object-fit: contain;    /* Ensures the image never stretches weirdly */
}
