

.main-content {
  margin: 0;
  padding: 0;
}

input[type="submit"] {
  background-color: #0097ff;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #2a4057;
  cursor: pointer;
}

.layout {
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

.logoRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.logoImage {
  height: 2rem;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.logoText {
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Noto Sans', Arial, sans-serif;
  color: #eeeeee;
}

.popupAlertError {
  animation: popupAlertIn 0.2s linear;
}