body {
	
	background-image: url(images/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
background-color: #111508;
	
}

div.otsikot {
	position: absolute;
	top: 10em;
	left: 10em;
}
div.lomake {
	position: absolute;
	top: 18em;
	left: 10em;
	width: 15em;
}

.form{
  
  height:100%;
  width:100%;
  box-sizing:border-box;
  padding-left: 18px;
}

.textbox{
  height:50px;
  width:100%;
  border-radius:3px;
  border:rgba(0,0,0,.3) 2px solid;
  box-sizing:border-box;
  padding:10px;
  margin-bottom:10px;
}

.textbox:focus{
  outline:none;
   border:rgba(24,149,215,1) 2px solid;
   color:rgba(24,149,215,1);
}

.button{
  height:50px;
  width:100%;
  border-radius:3px;
  border:rgba(0,0,0,.3) 0px solid;
  box-sizing:border-box;
  padding:10px;
  margin-bottom:30px;
  background:#90c843;
  color:#FFF;
  font-weight:bold;
  font-size: 12pt;
  transition:background .4s;
  cursor:pointer;
}

.button:hover{
  background:#80b438;
  
}