* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  
  font-family: "Arial", sans-serif;
  font-size: 15.3px; 
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background: none; /* Remove background from body */
}
body::before {
  content: "";
  position: fixed; /* Ensure it's fixed for a non-moving background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/logoback.jpeg") repeat; /* Add your repeating background */
  background-size: contain; /* Adjust the size of each logo */
  background-attachment: fixed; /* Fix the background */
  opacity: 0.1; /* Transparency level */
  z-index: -1; /* Place it behind other content */
}

input[type="text"] {
  padding: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 300px;
  margin-bottom: 10px;
}