html {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body#homepage {
  background-image: url("tlo.jpg");
  background-size: cover;
}

.navbar {
  display: flex;
  }
  
p.status {
  font-size: 15px;
  font-weight: bold;
  color: red;
}

.defaultButton {
  width: 50%;
  background-color: rgb(39, 39, 39);
  color: white;
  border: 2px dashed black;  /* zmienia grubość i styl obramowania */
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

P#countdown, p#countdowninfo {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  margin: auto auto;
  width: 375px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #333;
}
  
input[type="text"], input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #666;
  color: white;
  transition: 0.3s;
}

input[type="text"]:hover, input[type="password"]:hover, input[type="text"]:focus, input[type="password"]:focus  {
  background-color: #999;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

h1 {
  padding: 20px;
  color: white;
}

.error {
  color: red;
  font-weight: bold;
}