.rcs-login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  margin: 100px auto;
  padding: 20px;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.rcs-login-form label {
  align-self: flex-start;
  font-weight: bold;
  margin-bottom: 4px;
}

.rcs-input-group {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.rcs-input-group input {
  width: 100%;
  padding: 10px 40px 10px 48px;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.rcs-input-group input:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 5px rgba(0,115,170,0.3);
}

.rcs-emoji {
  position: absolute;
  left: 10px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #555;
  pointer-events: none;
}

.rcs-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #555;
  padding: 0;
  line-height: 1;
}

.rcs-button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.rcs-button-row input[type="submit"],
.rcs-button-row button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rcs-button-row input[type="submit"]:hover,
.rcs-button-row button:hover {
  background-color: #005f8d;
}

/.rcs-button {
  padding: 8px 20px;
  font-size: 14px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rcs-button:hover {
  background-color: #005f8d;
}


.rcs-login-title {
  text-align: center;
  font-size: 32px;         /* größer als vorher */
  margin: 40px 0 20px;     /* mehr Abstand nach oben */
  font-family: Arial, sans-serif;
  color: #333;
}
.rcs-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f0f0f0;
  font-size: 0.8em;
  color: #555;
  gap: 20px;
}

.rcs-footer-left,
.rcs-footer-right {
  display: flex;
  align-items: center;
}

.rcs-footer-left {
  flex: 1;
}

.rcs-footer-right {
  white-space: nowrap;
}

.login-statusmeldung {
  font-weight: bold;
  font-size: 1.2em;
  color: black;
  white-space: pre-line;
  text-align: left;
}

.login-statusmeldung.error {
  color: red;
}

.rcs-footer-text {
  text-align: right;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 12px;
}

.rcs-forgot-password {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

.rcs-forgot-password a {
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
}

.rcs-forgot-password a:hover {
  text-decoration: underline;
}
.rcs-form-wrapper {
  display: flex;
  justify-content: flex-start; /* statt center */
  align-items: flex-start;
  gap: 30px;                   /* engerer Abstand */
  margin: 20px auto;           /* zentriert auf Seite */
  max-width: 700px;            /* begrenzt Gesamtbreite */
  /*margin-top: 20px; /* oder 0px, je nach gewünschter Höhe */
}


.rcs-password-rules {
  flex-shrink: 0;
  width: 250px;
  font-size: 0.9em;
  color: #333;
  background-color: #f9f9f9;
  /* border-left: 3px solid #0073aa; blau geschweifter Rand */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  margin-top: 60px; /* gleiche Höhe wie Formular */
}

.rcs-password-rules h3 {
  margin-top: 0;
  font-size: 1.1em;
  color: #0073aa;
}

.rcs-password-rules ul {
  padding-left: 20px;
  margin: 0;
}

.rcs-password-rules li {
  margin-bottom: 6px;
}
