.ps-wrapper {
    max-width: 460px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ps-title {
    text-align: center;
    margin-bottom: 30px;
}

.ps-form {
    display: flex;
    flex-direction: column;
}

.ps-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.ps-field label {
    margin-bottom: 6px;
    font-weight: 600;
}

.ps-field input[type="text"],
.ps-field input[type="email"],
.ps-field input[type="password"] {
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
}

.ps-field input:focus {
    border-color: #000;
    outline: none;
}

.ps-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.ps-readonly{
  background:#f3f3f3;
  cursor:not-allowed;
}

.ps-button {
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.ps-button:hover {
    background: #333;
}

.ps-links {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Sticky Header */
.ps-header{
  background: #006FB6;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 99999;
}

/* Abstand, damit Content nicht unter den Header rutscht */
body{
  padding-top: 0; /* nur falls nötig */
}

/* Alternative (falls sticky wegen Parent overflow nicht greift): */
.ps-header.is-fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
}

.ps-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ps-logo img {
    height: 50px;
}

.ps-login-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.ps-login-link:hover {
    color: #ffffff!Important;         /* bleibt weiß */
    text-decoration: underline;  /* wird unterstrichen */
}

/* Abstand unter Header */
.ps-wrapper {
    margin-top: 40px;
}

.ps-error {
    margin-top: 15px;
    padding: 10px;
    background: #ffeaea;
    color: #c00000;
    border: 1px solid #ffb3b3;
    border-radius: 6px;
    font-size: 14px;
}