html { 
  background: url('../css/main-bg.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body {
  background-size:cover;
}
.contentstart {
  width:680px;
  height:320px;    
  margin:150px auto;
}

.form-wrapper {
  margin:32px auto;
  width:264px;
  height: 253px;
  position:relative;
  border:1px solid rgb(197,200,204);
  background-color:rgb(180, 240, 174);
  text-align:center;
  border-radius:5px;
}

.form-wrapper .login-form-start {
  padding-top:40px;
  box-shadow:inset 2px 0 0 rgb(180, 240, 174);
}
.form-wrapper input[name="username"],
.form-wrapper input[name="password"] {
  height:40px;
  width: 200px;
  margin:0 auto;
  padding-left:15px;
  display:block;
  border-radius:0 0 5px 5px ;
  border:1px solid rgb(197,200,204);
  background-color:rgb(227, 252, 226);
}
.form-wrapper select [name="selected_language"],
.form-wrapper input[name="username"]{
  border-bottom:none;
  border-radius: 5px 5px 0 0;
  box-shadow:inset 0 1px 0 rgb(212,214,217);
  outline:none;
}

.form-wrapper input[name="password"] {
  border-radius:0 0 5px 5px;
  outline:none;
}
.form-wrapper select[name="selected_language"]{
  height:40px;
  width: 217px;
  margin:0 auto;
  padding-left:12px;
  display:block;
  border:1px solid rgb(197,200,204);
  background-color:rgb(227, 252, 226);
  border-radius: 5px 5px 5px 5px;
  box-shadow:inset 0 1px 0 rgb(212,214,217);
  outline:none;
}
.form-wrapper button[type="submit"] {
    margin-top:25px;
  cursor:pointer;
    width:215px;
    height:44px;
    color:#fff;
    font-size:20px;
    border:none;
    border-top:1px solid rgb(48, 190, 65);
    position:relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(49, 233, 93)), color-stop(100%,rgb(29, 155, 59)));
    background-size:213px 41px,215px 43px;
    border-radius:5px;
    box-shadow:inset 0 1px 0 rgb(242,220,175);
    text-shadow:1px 1px 0 rgb(138,100,50);
    transition:color 300ms linear;
}
.form-wrapper button[type="submit"]:hover {
  opacity:0.9;
  }