/* Perusasettelu ja responsiivisuus */
body {
  
  color: #f0f0f0;
  font-family: 'Arial', sans-serif;
  margin: 0;
  /*background-color: #1e1e1e;
  background-image: url(./images/hyllyt.png);*/
}

.bg-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
    margin-right: auto;
    margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  background-color: #2c2c2c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 0rem 0.5rem .5rem rgba(0, 0, 0, 0.75),0px 0px 300px #00ffc166;
  border-top: double #9d9d9d 4px;
  border-right: double #404040 4px;
  border-left: double #717171 4px;
  border-bottom: double #3a3a3a 4px;
}

/* Lomakkeen otsikko */
.bg-form-wrapper h2 {
  color: #e5c07b;
  font-size: 1.8em;
  margin-bottom: 20px;
}

/* Lomakekentät */
.bg-form-wrapper input[type="text"],
.bg-form-wrapper input[type="number"],
.bg-form-wrapper input[type="url"],
.bg-form-wrapper input[type="file"],
.bg-form-wrapper select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background-color: #2d2d2d;
  border: 1px solid #464646;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 20px #00000078;
}

.bg-form-wrapper input[type="text"]:focus,
.bg-form-wrapper input[type="number"]:focus,
.bg-form-wrapper input[type="url"]:focus,
.bg-form-wrapper input[type="file"]:focus,
.bg-form-wrapper select:focus {
  outline: none;
  border-color: #e5c07b;
  box-shadow: 0 0 5px #e5c07b;
}

/* Select valikko */
.bg-form-wrapper select {
  background-color: #3b3b3b;
  color: #f0f0f0;
}

.bg-form-wrapper label {
  font-size: 1.1em;
  color: #dcdcdc;
}

/* Lähetä-painike */
.bg-form-wrapper input[type="submit"] {
  background-color: #69EABB;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: auto;
    margin-top: auto;
  margin-top: auto;
  margin-top: 4rem;
  width: 100%;
}

.bg-form-wrapper input[type="submit"]:hover {
  background-color: #8dffd5;
}

/* Responsiivinen muotoilu */
@media (max-width: 600px) {
  .bg-form-wrapper {
      padding: 15px;
  }

  .bg-form-wrapper h2 {
      font-size: 1.5em;
  }

  .bg-form-wrapper input[type="submit"] {
      font-size: 1em;
      padding: 8px 16px;
  }
}


