/* General */

header {
  background: #313131;
}

.head {
  font-size: 30px;
  color: rgb(231, 229, 229);
  background: #313131;
}



body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}



/* Input Forms*/
input[type="text"],
input[type="email"],
input[type="password"] {
  outline: none;
  padding: 20px;
  display: block;
  width: 300px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin: 20px auto;
}

input[type="submit"] {
  font-size: 18px;
  padding: 10px;
  color: #fff;
  background: #0098cb;
  width: 320px;
  margin: 20px auto;
  margin-top: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #00b8eb;
}

/* Header */
header {
  border-bottom: 2px solid #eee;
  padding: 20px 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

header a {
  text-decoration: none;
  color: #333;
}

.formbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #cccccc;
  width: 360px;
  margin: auto;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 20px;
  padding: 20px;
  /*box-shadow: 0 0 5px rgb(235, 235, 235);*/  
}

.formbox-stor {
  position: absolute;
  background: #cccccc;
  width: 98%;
  margin:0 1%;
  top: 30%;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 20px;
  /*box-shadow: 0 0 5px rgb(235, 235, 235);*/
}

.picbox {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  

  /*box-shadow: 0 0 5px rgb(235, 235, 235);*/
  
}

html {
  background: #3b3b3b;
  background: url("../../unikum-pink-dus.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}