/* ============================================================
   Holzbrikettfarm – Konto-Bereich (Registrierung, Login, Konto)
   ============================================================ */

.konto-section {
    padding: 4rem 0 5rem;
    min-height: 60vh;
}

.konto-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--weiss);
    border-radius: var(--radius);
    box-shadow: var(--schatten);
    padding: 2.2rem 2rem;
}

.konto-box h1 {
    color: var(--rot);
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
}

.konto-box .unter {
    color: var(--grau);
    margin-bottom: 1.6rem;
}

.formfeld {
    margin-bottom: 1.1rem;
}

.formfeld label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.formfeld input,
.formfeld textarea {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid #ddd6cc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.formfeld textarea {
    resize: vertical;
}

.formfeld input:focus,
.formfeld textarea:focus {
    border-color: var(--rot);
}

.form-reihe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hinweis {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 0.92rem;
}

.form-hinweis.fehler {
    background: #fdeceb;
    color: var(--rot-dunkel);
    border: 1px solid #f4c6c2;
}

.form-hinweis.erfolg {
    background: #eaf6ec;
    color: #1e6b32;
    border: 1px solid #bfe3c6;
}

.form-hinweis.info {
    background: var(--creme);
    color: var(--anthrazit);
    border: 1px solid var(--holz-hell);
}

.konto-box .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.konto-box .wechsel {
    text-align: center;
    margin-top: 1.4rem;
    font-size: 0.92rem;
    color: var(--grau);
}

.legacy-frage {
    text-align: center;
}

.legacy-frage .btn-reihe {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.legacy-frage .btn-reihe .btn {
    margin-top: 0;
}

.bestellungen-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.bestellungen-tabelle th,
.bestellungen-tabelle td {
    padding: 0.6rem 0.7rem;
    text-align: left;
    border-bottom: 1px solid #ece5da;
    font-size: 0.92rem;
}

.bestellungen-tabelle th {
    color: var(--grau);
    font-weight: 600;
}

.konto-kopf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.konto-kopf .btn {
    width: auto;
}
