.login-center {
  height: calc(100vh - 60px);
  justify-content: center;
  padding: 0;
}

.login-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  padding: 36px;
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
  border-radius: 8px;
  background: white;
  margin: auto;
}

.login-full {
  height: 80vh;
  width: 100%;
}

.greentext {
  text-align: center;
  font-size: 30px;
  color: #539b5c;
  margin: 20px;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
}

.bev-text {
  text-align: center;
  font-size: 24px;
  color: #000000;
  margin: 20px;
  font-weight: 400;
  font-family: 'Roboto Slab', serif;
}

.warning {
  color: red;
  padding-bottom: 15px;
}

.login-title {
  font-weight: bold;
  font-size: 31px;
  margin-bottom: 14px;
}

.login-label {
  margin: auto;
  text-align: left;
  width: 220px;
  padding-bottom: 5px;
}

.login-alert {
  font-size: 12px;
  color: red;
  margin: 5px;
}

.login-input {
  height: 18px;
  width: 200px;
  margin-bottom: 18px;
  padding: 10px;
  outline: none;
  border: solid 1px grey;
  border-radius: 5px;
}

.login-btn {
  width: 188px;
  padding: 9.8px 16px;
  margin: auto;
  border: solid 1px grey;
  background: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

.login-btn:hover {
  background: #F0F0F0;
}

.tovabb-btn {
  width: 188px;
  padding: 9.8px 16px;
  margin: auto;
  font-weight: 400;
  color: white;

  background: rgb(240, 60, 33);
  background: linear-gradient(90deg, rgb(240, 60, 33, 1) 0%, rgba(200,39,25,1) 100%);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
}

.tovabb-btn:hover {
  background: rgb(240, 60, 33, 0.95);

}

.login-wrong { border: solid 1px red; }
.login-wrong::placeholder { color: red; }

@media screen and (max-width: 530px) {
  .greentext {
    font-size: 18px;
    margin: 30px 0px;
  }
  .bev-text {
    font-size: 16px;
    margin: 10px 0px;
  }
  .login-center {
    padding: 20px;
  }
  .login-full {
    height: 100%;
    width: 100%;
  }
  .login-bg {
    margin-top: 40px;

    padding: 20px 16px;
  }
}
