@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&family=Source+Sans+Pro:wght@400;700&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  background: #f8f9fa;
  color: #111;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bulletin-icon-dark-nobg.svg") center center no-repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

#container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

h2 {
  font-family: "PT Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input[type="email"],
input[type="password"] {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.2s;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #4cafef;
}

button {
  display: inline-block;
  color: #fff;
  background-color: #4cafef;

  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;

  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #3a9ddc;
}

button:disabled {
  background-color: #999;
  cursor: not-allowed;
}
