/* --- YLEISET ASETUKSET --- */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 20px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

/* --- YLÄOSA --- */
header {
  text-align: center;
  margin-bottom: 20px;
}

/* --- NAV-palkki --- */

/* --- Sitten kun on nav palkki niin... Current, väri,  ---*/

/* --- LOMAKE-BOKSIT --- */
.laatikko {
  background-color: white;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* --- LOMAKE-TEKSTIT --- */
label {
  display: block;
  margin-top: 9px;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: bolder;
  color: rgba(0, 0, 0, 0.7);
}

/* --- LOMAKE-LAATIKOT --- */
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-size: 16px;
}

/* --- LOMAKE-LAATIKOT KUN VALITTU --- */
input:focus {
  border: 2px solid rgba(0, 0, 0, 0.7);
}

/* --- LOMAKE-NAPPI --- */
button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.5s;
  font-weight: bolder;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/* --- LOMAKE-ALA-TEKSTI --- */
.boxFoot {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bolder;
}
/* --- --- */

/* --- --- */

/* --- --- */

/* --- --- */
