body {
  margin: 0;
  background-color: rgb(20, 20, 20);
  font-family: 'Grotesk', sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 60px; /* добавим отступ сверху */
}

.center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#model-canvas {
  width: 300px;
  height: 300px;
  display: block;
  margin-bottom: -20px;
  border-radius: 12px;
}

.form-container {
  background-color: rgb(30, 30, 30);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
  width: 300px;
}



form { 
  display: flex;
  flex-direction: column;
 }
  
  
  label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
  }


input { 
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  border: none;
  outline: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.288);
 }


input:hover { 
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.288);
  transform: scale(1.01);
}


canvas { 
  width: 100%;
  height: 100%;
  display: block;
}


button { 
  background-color: #ffffff;
  color: rgb(46, 46, 46);
  padding: 10px;
  border-radius: 9px;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 0.3s ease, border-radius 0.4s ease, box-shadow 0.3s ease;
  border: none;
  outline: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.288);
}


button:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.288);
  transform: scale(1.05);
  border-radius: 20px;
}