
.registerArea {
  min-height: 500px;        /* <-- expands to all available vertical space */
  margin-left: 20px;
}

.signinButton {
  background: #fbca1f;
  font-family: inherit;
  padding: 0.6em 1.3em;
  font-weight: 900;
  font-size: 18px;
  border: 3px solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  cursor: pointer;
  display: flex;             /* ← makes elements align horizontally */
  align-items: center;       /* ← vertically centers text & icon */
  gap: 10px;                 /* ← space between text and icon */
}

.signinButton:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em;
}

.signinButton:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em;
}


.googleIcon {
  width: 29px;
}
.cookieInfo {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 22px;
  font-size: 14px;
  color: #555;
}

.cookieInfo input[type="checkbox"] {
  accent-color: #31b717;
  cursor: default;
  transform: scale(1.6);
}

.cookieInfo a {
  text-decoration: underline;
  color: inherit;
}
