* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "roboto";
  overflow-y: hidden;
  overflow-x: hidden;
}

html,
body {
  background-color: #f8cbae;
  width: 100%;
}
/*-------------------
        Sivun pääsisältö
    --------------------*/
.container {
  width: 100%;
}
main {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  background-color: #f9d7c1;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  border-radius: 10px;
}
.form {
  padding: 3em;
  text-align: center;
}
.form input {
  width: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  outline: none;
  background-color: #f9d7c1;
  padding: 15px;
  font-size: 1.1rem;
  margin-bottom: 22px;
  transition: 0.3s;
  border-radius: 50px;
}
.form input:focus {
  border: 2px solid rgba(0, 0, 0, 0.705);
  background-color: #ffffff;
}
.otsikko {
  margin-bottom: 0.5em;
}
.takaisin {
  font-size: 20px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.takaisin:hover {
  color: rgb(158, 158, 158);
}
.nappi {
  font-size: 20px;
  border-radius: 50px;
  padding: 15px;
  width: 30%;
  border: 2px solid black;
  background-color: black;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 1em;
}
.nappi:hover {
  background-color: rgb(33, 33, 33);
}
.viesti {
  font-size: 20px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
/*-------------------
        Sivun pääsisältö
    --------------------*/

/*-------------------
        Puhelimet
    --------------------*/
@media screen and (max-width: 480px) and (orientation: portrait) {
}
@media screen and (max-width: 480px) and (orientation: landscape) {
}
/*-------------------
        Puhelimet
    --------------------*/

/*-------------------
        Tabletit
    --------------------*/
@media screen and (min-width: 481px) and (max-width: 768px) and (orientation: portrait) {
}
@media screen and (min-width: 481px) and (max-width: 768px) and (orientation: landscape) {
}
/*-------------------
        Tabletit
    --------------------*/

/*-------------------
        Kannettavat
    --------------------*/

@media screen and (min-width: 769px) and (max-width: 1023px) and (orientation: portrait) {
}
@media screen and (min-width: 769px) and (max-width: 1023px) and (orientation: landscape) {
}

@media screen and (min-width: 1280px) and (max-width: 1680px) and (orientation: portrait) {
}
@media screen and (min-width: 1280px) and (max-width: 1680px) and (orientation: landscape) {
}
/*-------------------
        Kannettavat
    --------------------*/

/*-------------------
        Suuremmat
    --------------------*/
@media screen and (min-width: 1681px) and (orientation: portrait) {
}
@media screen and (min-width: 1681px) and (orientation: landscape) {
}
/*-------------------
        Suuremmat
    --------------------*/
