/* Registrierung Start – Card Look */
.fw-authcard{
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.fw-authcard__header{
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}
.fw-authcard__title{
    margin: 0;
    color: #2281C4 !important;
    font-size: 24px;
    font-weight: 700;
}
.fw-authcard__subtitle{
    margin: 8px 0 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}
.fw-authcard__body{
    padding: 18px 22px;
}
.fw-authcard__meta{
    margin-top: 12px;
    line-height: 1.4;
}

.fw-auth-actions{
    margin-top: 12px;
}
.fw-auth-actions .btn{
    border-radius: 8px;
    padding: 12px 14px;
}
.fw-auth-actions .btn + .btn{
    margin-top: 10px;
}

/* ===== Passwortfeld: Bootstrap-3 Input-Group Fix ===== */
.fw-pw-field .input-group-addon,
.fw-pw-field .form-control,
.fw-pw-field .input-group-btn > .btn {
    height: 48px !important;            /* input-lg Höhe in BS3 */
    line-height: 46px !important;       /* sorgt für vertikale Zentrierung ohne "Murks" */
    box-sizing: border-box;
}

/* Der Input selbst darf NICHT line-height:46 haben, sonst wirkt Text seltsam.
   Deshalb überschreiben wir line-height + padding nur für das Input. */
.fw-pw-field .form-control {
    line-height: 1.42857143 !important; /* Bootstrap Standard */
    padding: 10px 16px !important;
    background: #fff !important;
}

/* Addon/Button zentrieren ohne flex */
.fw-pw-field .input-group-addon,
.fw-pw-field .input-group-btn > .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle;
}

/* Borders wie beim Mailfeld */
.fw-pw-field .input-group-addon {
    border-right: 0 !important;
    background: #f5f5f5;
}

.fw-pw-field .input-group-btn > .btn {
    border-left: 0 !important;
    background: #f5f5f5;
    box-shadow: unset !important;
}

/* FontAwesome Icon leicht modern */
.fw-pw-field .fa {
    font-size: 16px;
    color: #666;
}

/* Eye-Button hover: keine Textfarbe ändern (Link-Problem vermeiden) */
.fw-pw-field .fw-pw-toggle:hover,
.fw-pw-field .fw-pw-toggle:focus {
    color: inherit !important;
}

/* Chrome Autofill kann sonst gelb/grau machen */
.fw-pw-field input:-webkit-autofill,
.fw-pw-field input:-webkit-autofill:hover,
.fw-pw-field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    box-shadow: 0 0 0px 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
}

.cta-secondary {
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-secondary:hover {
    background-color: #e2e2e2;
}

/* CTA-Button als Link, aber ohne Link-Farben */
a.cta-secondary,
a.cta-secondary:hover,
a.cta-secondary:focus,
a.cta-secondary:active,
a.cta-secondary:visited {
    color: #000 !important;        /* oder deine Button-Schriftfarbe */
    text-decoration: none;
}


@media (max-width: 767px){
    .fw-authcard__header,
    .fw-authcard__body{
        padding: 14px 14px;
    }
    .fw-authcard__title{
        font-size: 20px;
    }
}
