/* Jytkympi musta submit-nappi */
input[type="submit"]{
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  min-width: 200px;
  border: none;
  border-radius: 14px;
  font: 700 16px/1 Arial, sans-serif;
  letter-spacing: .2px;
  color: #fff;
  background: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
}

input[type="submit"]:hover{
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.45), 0 3px 10px rgba(0,0,0,.3);
}

input[type="submit"]:active{
  transform: translateY(1px) scale(.995);
  box-shadow: 0 6px 16px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.2);
}

input[type="submit"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,0,0,.25);
}


/* Jytkympi tekstikenttä */
input[type="text"]{
  width: 100%;
  max-width: 320px; /* halutessa voi poistaa */
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #ccc;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: border-color .15s ease, box-shadow .15s ease, transform .06s ease;
}

input[type="text"]:focus{
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0,0,0,.15), 0 4px 14px rgba(0,0,0,.25);
  transform: scale(1.01);
}

input[type="text"]::placeholder{
  color: #777;
  font-weight: 400;
}
#bottom {
  position: fixed;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  color: #666;
  text-align: left;
  white-space: nowrap;
  opacity: .85;
}

#bottom:hover {
  opacity: 1;
}

#bottom a {
  color: #444;
  text-decoration: none;
}

#bottom a:hover {
  text-decoration: underline;
}
input[type="text"]{
  width: 160px;          /* sopiva leveys 8 merkille */
  text-align: center;    /* keskittää koodin */
  letter-spacing: 2px;   /* vähän väliä merkeille */
}