/*Layout*/

/*Kontentbereich für Login Seite*/
.contentArea-loginLayout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 24px 20px;
  background: var(--bg);
  overflow-y: auto;
}

.contentArea-loginLayout-container {
  width: 100%;
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 32px 28px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: auto;
}











/*Elemente*/

/*Kontentcontainer für den Text, der Websitebeschreibung bei Login*/
.contentArea-loginLayout-container-websiteDescription {
  text-align: center;
  margin-bottom: 24px;
}

.contentArea-loginLayout-container-websiteDescription p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}










/*Container für den Profilbild. Nicht eingelogt Icon, Eingelogt Profilbild*/
.contentArea-loginLayout-container-profileImageContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.contentArea-loginLayout-container-profileImageContainer-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--panel);
  padding: 3px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contentArea-loginLayout-container-profileImageContainer-img.profile-changing {
  opacity: 0;
  transform: scale(0.8);
}

.contentArea-loginLayout-container-profileImageContainer-img.profile-changed {
  animation: profileFadeIn 0.5s ease-out;
}










/*Container für die Eingabefelder von Logingdaten für Login Seite*/
.contentArea-loginLayout-container-loginForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.contentArea-loginLayout-container-loginForm input {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.contentArea-loginLayout-container-loginForm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contentArea-loginLayout-container-loginForm-field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.contentArea-loginLayout-container-loginForm-field-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contentArea-loginLayout-container-loginForm-field-input::placeholder {
  color: var(--muted);
}

.contentArea-loginLayout-container-loginForm-field-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contentArea-loginLayout-container-loginForm-field-input-error {
  border-color: var(--error) !important;
  background: rgba(239, 68, 68, 0.05) !important;
  animation: shake 0.5s ease-in-out;
}

.contentArea-loginLayout-container-loginForm-field-input-error:focus {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.contentArea-loginLayout-container-loginForm-field-optionsField {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.contentArea-loginLayout-container-loginForm-field-optionsField-rememberMeCheckboxArea {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  line-height: 1;
}

.contentArea-loginLayout-container-loginForm-field-optionsField-rememberMeCheckboxArea span {
  display: inline-block;
  line-height: 18px;
  height: 18px;
  vertical-align: top;
}

.contentArea-loginLayout-container-loginForm-field-optionsField-rememberMeCheckboxArea input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.contentArea-loginLayout-container-loginForm-field-optionsField-rememberMeCheckboxArea-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand);
}

.contentArea-loginLayout-container-loginForm-field-optionsField-forgotLogingDataLink {
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.contentArea-loginLayout-container-loginForm-field-optionsField-forgotLogingDataLink:hover {
  color: var(--brand-600);
  text-decoration: underline;
}













/*Container für die Websiteeinstellungen und Logindaten Vergessen Box für Login Seite*/

.contentArea-loginLayout-container-websiteSettingsArea {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown {
  width: 100%;
  padding: 8px 32px 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 11px;
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown option {
  background: var(--bg);
  color: var(--text);
  padding: 8px;
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown:hover {
  border-color: var(--brand);
  background-color: rgba(59, 130, 246, 0.05);
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contentArea-loginLayout-container-websiteSettingsArea-dropdown-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contentArea-loginLayout-container-websiteSettingsArea-loginForgotBox {
  position: relative;
  animation: fadeInScale 0.5s ease-out;
}

.contentArea-loginLayout-container-websiteSettingsArea-loginForgotBox.hiding {
  animation: fadeOutScale 0.3s ease-out;
}

.contentArea-loginLayout-container-websiteSettingsArea-loginForgotBox .contentArea-loginLayout-container-websiteSettingsArea {
  margin-top: 24px;
  padding-top: 24px;
  padding-left: 60px;
  padding-right: 20px;
  border-top: 1px solid var(--border);
}













/*Container für die Willkommen Box, nach erfolgreichen Login*/
.contentArea-loginLayout-container-welcomeText {
  text-align: center;
  padding: 24px;
  animation: fadeInScale 0.5s ease-out;
}

.contentArea-loginLayout-container-welcomeText p {
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
  margin: 0;
  animation: fadeIn 0.6s ease-out 0.2s both;
}









/*Anmelden Button*/
.contentArea-loginLayout-loginButton {
  width: 100%;
  padding: 12px 20px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 4px;
}

.contentArea-loginLayout-loginButton:hover {
  background: var(--brand-600);
}

.contentArea-loginLayout-loginButton:active {
  transform: scale(0.98);
}






/*Anmeldefehler*/
.contentArea-loginLayout-loginError {
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  border-radius: 8px;
  color: var(--error);
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  animation: slideDown 0.3s ease-out;
}



/*Elemente von Anmeldedaten-Vergessen Subseite*/
.contentArea-loginLayout-container-loginForgotArea-content {
  padding: 20px;
  padding-bottom: 0;
}

.contentArea-loginLayout-container-loginForgotArea-content-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.contentArea-loginLayout-container-loginForgotArea-content-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
}

.contentArea-loginLayout-container-loginForgotArea-content-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contentArea-loginLayout-container-loginForgotArea-content-contactItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
}

.contentArea-loginLayout-container-loginForgotArea-content-contactItem a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contentArea-loginLayout-container-loginForgotArea-content-contactItem a:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

.contentArea-loginLayout-container-loginForgotArea-content-contactItem strong {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contentArea-loginLayout-container-loginForgotArea-content-contactItem span:first-of-type {
  color: var(--muted);
  font-size: 13px;
}

.contentArea-loginLayout-container-loginForgotArea-content-backButton {
  width: 100%;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  margin-top: 24px;
  box-sizing: border-box;
}

.contentArea-loginLayout-container-loginForgotArea-content-backButton:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--brand);
  transform: translateX(-2px);
}

.contentArea-loginLayout-container-loginForgotArea-content-backButton:active {
  transform: translateX(-4px) scale(0.98);
}

.contentArea-loginLayout-container-loginForgotArea-content-backButton svg,
.contentArea-loginLayout-container-loginForgotArea-content-backButton i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 18px;
}

.contentArea-loginLayout-container-loginForgotArea-content-backButton span {
  line-height: 1;
}














/**************************************************************************************************************/
/**************************************************************************************************************/
/************************************RESOLUTION Abhangige Einstellungen****************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

@media (max-width: 480px) {
  .contentArea-loginLayout-container {
    padding: 32px 24px 24px 24px;
    max-width: 100%;
  }

  .contentArea-loginLayout-container-websiteDescription p {
    font-size: 16px;
  }

  .contentArea-loginLayout-container-profileImageContainer-img {
    width: 64px;
    height: 64px;
  }

  .contentArea-loginLayout-container-websiteSettingsArea {
    gap: 10px;
  }

  .contentArea-loginLayout-container-websiteSettingsArea-dropdown {
    padding: 8px 32px 8px 10px;
    font-size: 13px;
  }

  .contentArea-loginLayout-container-websiteSettingsArea-dropdown-label {
    font-size: 11px;
  }

  .contentArea-loginLayout-container-websiteSettingsArea-loginForgotBox .contentArea-loginLayout-container-websiteSettingsArea {
    padding-left: 20px;
    padding-right: 20px;
  }

}