section.cpd_sec_content {
  background-image: url("/data/img/background/login.jpg");
  background-size: cover;
  height: calc(100vh - var(--cpd_abstand_header_size));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

* {
  transition: colors 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -webkit-transition: colors 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -moz-transition: colors 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -ms-transition: colors 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -o-transition: colors 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}



div.login_container {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

div.login_left {
  width: 35%;
  height: 100%; /* Ensure it matches the height of the right div */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 28px 28px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

div.login_logo {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

div.login_logo img {
  width: 100%;
  height: auto;
}

div.login_right {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 28px 28px 40px;
  background: var(--cpd_farbe_items_backg_hell);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

div.login_right > div {
  width: 100%;
  height: auto;
}

div.login_daten_titel {
  margin-bottom: 32px;
}

div.login_daten_titel h1 {
  font-weight: 600;
  font-size: 36px;
  color: var(--cpd_farbe_text_dunkel);
}

div.login_daten_logintype {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

div.login_daten_logintype > a {
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--cpd_farbe_marke_blau_800);
  font-size: 18px;
  font-weight: 500;
}

div.login_daten_logintype > a.aktiv {
  color: var(--cpd_farbe_marke_rot_500);
}

div.login_daten_logintype > a:hover, a:focus, a:active {
  color: var(--cpd_farbe_marke_blau_500);
}

div.login_daten_logintype > a.aktiv:hover, a:focus, a:active {
  color: var(--cpd_farbe_marke_rot_800);
}


hr.login_daten_hr {
  width: 100%;
  height: 1px;
  background-color: var(--cpd_farbe_zusatz_grau_300);
  margin: 0 auto;
}

div.login_daten_formular {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

form.login_daten_formular_form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.login_daten_formular_input {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

div.login_daten_formular_input > input {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--cpd_farbe_items_backg_hell);
  color: var(--cpd_farbe_text_dunkel);
  border: 1px solid var(--cpd_farbe_zusatz_grau_200);
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  padding-left: 40px; /* Adjust padding to make space for the icon */
  z-index: 1;
}

div.login_daten_formular_input:nth-child(3) > input {
  padding-right: 40px; /* Adjust padding to make space for the icon */
}

div.login_daten_formular_input > i:nth-child(1) {
  position: absolute;
  left: 12px; /* Position the icon inside the input */
  color: var(--cpd_farbe_zusatz_grau_800);
  font-size: 18px; /* Adjust icon size */
  z-index: 2;
}

div.login_daten_formular_input > i#togglePassword {
  position: absolute;
  right: 10px; /* Position the icon inside the input */
  color: var(--cpd_farbe_zusatz_grau_800);
  font-size: 18px; /* Adjust icon size */
  z-index: 2;
}


div.login_daten_formular_checkbox {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
}

div.login_daten_formular_checkbox > input {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

div.login_daten_formular_checkbox > label {
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--cpd_farbe_zusatz_grau_800);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}




div.passwort_vergessen {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

div.passwort_vergessen > a {
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--cpd_farbe_marke_mint_600);
  font-size: 18px;
  font-weight: 400;
}

div.passwort_vergessen > a:hover, a:focus, a:active {
  color: var(--cpd_farbe_marke_mint_800);
}


div.anmelden {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

div.anmelden > button {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--cpd_farbe_marke_mint_800);
  color: var(--cpd_farbe_text_hell);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

div.anmelden > button:hover, button:focus, button:active {
  background-color: var(--cpd_farbe_marke_mint_600);
  cursor: pointer;
}



div.registrieren {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

div.registrieren > p {
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--cpd_farbe_zusatz_grau_700);
  font-size: 18px;
  font-weight: 400;
}

div.registrieren > p > a {
  color: var(--cpd_farbe_marke_mint_600);
  font-size: 18px;
  font-weight: 400;  
}

div.registrieren > p > a:hover, a:focus, a:active {
  color: var(--cpd_farbe_marke_mint_800);
}