:root {
  --error-color: red;
  --primary-color: rgb(255, 150, 80);
  --secondary-color: grey;
  --success-color: green;
  --text-color: black;
  --primary-dark-color: darkgrey;
}

/* Layout container */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  padding: 2rem 1rem 0 1rem;
}

/* Form styling */
.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0 2rem;
  margin: 2rem 0 1rem 0;
  gap: 1.5rem;
}

/* Input container */
.input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.custom-input,
.custom-input.noselect {
  border: 1px solid var(--text-color);
  border-radius: 0.3rem;
  padding: 0.2rem 0.5rem;
}

/* Submit button */
.submitButton {
  width: 70%;
  height: 2.5rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  color: black;
}

/* Logo display section */
.LogoDisplay {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.LogoDisplayDiv {
  width: 300px;
  padding: 40px;
}

.LogoDisplayImg {
  width: 220px;
}

/* Datenschutz section */
.datenSchutz {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem 0;
  align-items: center;
}

/* GITSA branding */
.logoGitsa {
  width: 220px;
  display: block;
  margin: auto;
  padding-bottom: 1.5rem;
}

.brandGitsa {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
}

/* Language switcher */
.languageSwitcher {
  width: 100%;
}

/* Checkbox container */
.checkbox-container {
  display: flex;
  gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 630px) {
  .content {
    padding: 1rem;
  }

  .form {
    padding: 0 1rem;
    gap: 1rem;
  }

  .submitButton {
    width: 100%;
    height: 2rem;
  }

  .LogoDisplay {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .LogoDisplayDiv {
    flex: 0 0 50%;
  }

  .LogoDisplayImg {
    width: 100%;
  }

  .languageSwitcher {
    width: 100%;
  }

  .LogoDisplay {
    flex-direction: column;
  }

  .validation-summary-errors {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
  }
}