/* ============================= */
/* FORM SYSTEM                   */
/* ============================= */

.fc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-label {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid var(--fc-text-dark);
    border-radius: 0;
    outline: none;
    background: #fff;
    color: var(--fc-text-dark);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--fc-fs-body);
    line-height: 1.2;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fc-input:focus {
    border-width: 2px;
    background: #fff;
}

.fc-input::placeholder {
    color: rgba(42, 40, 37, 0.45);
}

.fc-error {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #b42318;
}

/* Live-Passwortanforderungen */
.fc-pw-reqs {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--fc-text-dark);
}

.fc-pw-reqs-title {
    margin: 0 0 6px;
    color: rgba(42, 40, 37, 0.7);
}

.fc-pw-reqs.is-complete .fc-pw-reqs-title {
    color: var(--fc-olive-green);
}

.fc-pw-reqs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-pw-req {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(42, 40, 37, 0.6);
    transition: color 0.15s ease;
}

.fc-pw-req-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 1;
}

.fc-pw-req-icon::before {
    content: "\2715"; /* ✕ – fehlt noch */
}

.fc-pw-req.is-met {
    color: var(--fc-olive-green);
}

.fc-pw-req.is-met .fc-pw-req-icon::before {
    content: "\2713"; /* ✓ – erfüllt */
}

.fc-validation-summary {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.5;
    color: #b42318;
}

.fc-validation-summary ul {
    margin: 0;
    padding-left: 18px;
}

.fc-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fc-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.fc-checkbox-input {
    width: 16px;
    height: 16px;
    margin: 0;
    border-radius: 0;
    accent-color: var(--fc-text-dark);
}

.fc-checkbox-label {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-form-link {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.2;
    letter-spacing: 0.10em;
    color: var(--fc-text-dark);
    text-decoration: underline;
}

.fc-checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.fc-form-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

button.fc-btn,
a.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border: 1.5px solid var(--fc-text-dark);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-body);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.fc-btn-primary {
    background: transparent;
    color: var(--fc-text-dark);
}

.fc-btn-primary:hover {
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}