body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #d3d3d3; /* pelēks fons */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 400px;
  padding: 40px;
  background-color: #fff;
  border: 2px solid #3a4047;
  border-radius: 8px;
  text-align: center;
}

h1 {
  margin: 0;
  color: #000; /* melns teksts */
  font-size: 28px;
  text-transform: none; /* lai būtu tieši "shainPhotos" kā rakstīts */
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
  text-align: left;
  width: 100%;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #3a4047;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff; /* balts tekstlauks */
}

button {
  padding: 10px 20px;
  border: 2px solid #3a4047;
  border-radius: 6px;
  background-color: #f1f3f5;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-end; /* Pārvieto pogu labajā sānā */
  margin-top: 10px;
}

button:hover {
  background-color: #d9dce0;
}
