 body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
 /*background: linear-gradient(to right, #bdb9b9, #2e2d2d);*/
  background: url('/assets/images/tekstura-back.jpg-2000x1276.jpg') ;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper {
 /* background: #c4c0c0;*/
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 300px;
  background: url('/assets/images/fingers.jpg-500x322.jpg')
}

.login-form h2 {
  text-align: center;
  margin-bottom: 0em;
  color: white;
  font-size: 28px;
}

input {
  width:90%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  width:100%;
  padding: 10px;
  /*background-color: #c4c0c0;*/
  background:transparent;
  color: white;
  border: 1px solid;
  border-radius: 16px;
  border-color: white;
  cursor: pointer;
  font-weight: bold;
  font-size:19px;
}

button:hover{
    background-color: #1c1b1b;
}

.error {
  color: red;
  text-align: center;
  font-weight: bold;
}