body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f0f0f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}
form {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  max-width: 400px;
  margin: auto;
  width: 400px;
  height: 280px;
}
input, button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}
.panel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.panel-item {
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
  width: 160px;
}

.panel-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s;
}

.panel-item:hover img {
  transform: scale(1.1);
}

.panel-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}