.fw-auth-wrap{
    margin: 0 auto;
    padding: 20px 15px 10px;
    margin: 50px 0;
}
.fw-auth-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
@media (max-width: 900px){
    .fw-auth-grid{ grid-template-columns: 1fr; }
}

/* === Card Look (euer fw-authcard Stil) === */
.fw-authcard{
    margin-top: 0;
    margin-bottom: 0;
    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: 2rem;
    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-auth-actions{
    margin-top: 12px;
}
.fw-auth-actions .btn{
    border-radius: 8px;
    padding: 12px 14px;
}
.fw-auth-actions .btn + .btn{
    margin-top: 10px;
}
@media (max-width: 767px){
    .fw-authcard__header,
    .fw-authcard__body{
        padding: 14px 14px;
    }
    .fw-authcard__title{
        font-size: 20px;
    }
}

/* === Inputs: hübsch + konsistent (BS3-kompatibel) === */
.fw-authcard .form-control{
    height: 48px;
    border-radius: 8px;
}

/* === Alerts === */
.fw-alert{
    border-radius: 12px;
    padding: 12px 14px;
    margin: 0 0 16px 0;
    border: 1px solid;
    font-size: 14px;
}
.fw-alert-danger{
    background:#fff7ed;
    border-color:#fdba74;
    color:#9a3412;
}
.fw-alert-info{
    background:#eff6ff;
    border-color:#93c5fd;
    color:#1e3a8a;
}

/* === Links === */
.fw-link{
    display:inline-block;
    margin-top: 10px;
    font-size: 13px;
    color:#2281c4;
    text-decoration:none;
    font-weight: 700;
}
.fw-link:hover{ text-decoration: underline; }

/* ===== Passwortfeld: Bootstrap-3 Input-Group Fix (dein Snippet) ===== */
.fw-pw-field .input-group-addon,
.fw-pw-field .form-control,
.fw-pw-field .input-group-btn > .btn {
    height: 48px !important;
    line-height: 46px !important;
    box-sizing: border-box;
}
.fw-pw-field .form-control {
    line-height: 1.42857143 !important;
    padding: 10px 16px !important;
    background: #fff !important;
}
.fw-pw-field .input-group-addon,
.fw-pw-field .input-group-btn > .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle;
}
.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;
}
.fw-pw-field .fa {
    font-size: 16px;
    color: #666;
}
.fw-pw-field .fw-pw-toggle:hover,
.fw-pw-field .fw-pw-toggle:focus {
    color: inherit !important;
}
.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-button {
    background-color: #2281c4;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA secondary (optional, falls du ihn später nutzt) */
.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; }
a.cta-secondary,
a.cta-secondary:hover,
a.cta-secondary:focus,
a.cta-secondary:active,
a.cta-secondary:visited {
    color: #000 !important;
    text-decoration: none;
}
