/*General page styling*/

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #f0f2f5;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 480px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 150px;
  height: auto;
}

h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 25px;
}

form label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

form input[type="text"],
form input[type="file"],
form input[type="number"],
form select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  font-size: 14px;
  box-sizing: border-box;
}

form input[type="submit"] {
  margin-top: 20px;
  width: 100%;
  background-color: #0077cc;
  color: white;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

form input[type="submit"]:hover {
  background-color: #005fa3;
}

.orientation-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  margin-top: 15px;
  background-color: #f9f9f9;
  transition: box-shadow 0.2s ease-in-out;
}

.orientation-box legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.orientation-box label {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.orientation-box input[type="radio"] {
  accent-color: #0077cc;
  margin-right: 8px;
}


.hidden {
  display: none;
}

