#login-form {
  flex-direction: column;
  width: 40%;
}

#login-form .title {
  color: #fff;
  font-weight: bold;
  font-size: 36px;
}

#login-form > button {
  height: 36px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  width: 100%;
}

#login-form > input {
  background-color: #111;
  border-color: #333;
  color: #fff;
}

.separator {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2px;
}

.separator-text {
  font-size: 14px;
  color: #666;
}

.separator-line {
  height: 1px;
  background-color: #000;
  width: 45%;
  border-bottom: 1px solid #333;
}
