/* AE DocCheck PhiP Migration — Frontend Styles */

.ae-dcpm-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1em 0;
}

.ae-dcpm-intro h2 {
    margin-bottom: 0.5em;
}

.ae-dcpm-intro p {
    line-height: 1.55;
    color: #3c4145;
}

.ae-dcpm-cta {
    margin: 2em 0;
    text-align: center;
}

/* Section that holds the destructive "Konto löschen" button. Pulled
   noticeably away from the DocCheck CTA above so the visual hierarchy
   stays clear: verification is the primary action, deletion is the
   escape hatch. */
.ae-dcpm-delete-section {
    margin-top: 3.5em;
    text-align: center;
}

/* Destructive button: ghost style by default (white bg + red border +
   red label), turns orange on hover/focus as a soft warning that this
   is a one-way action. Two-line layout so the long secondary message
   sits inside the same target as the primary "Konto löschen" label —
   one button, one intent, no redundant link below. */
.ae-dcpm-delete-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    padding: 0.9em 1.8em;
    background: #fff;
    color: #cc0033;
    border: 2px solid #cc0033;
    border-radius: 5px;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    max-width: 100%;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ae-dcpm-delete-btn:hover,
.ae-dcpm-delete-btn:focus-visible {
    background: #f08c00;
    color: #fff;
    border-color: #f08c00;
    text-decoration: none;
}
.ae-dcpm-delete-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #f08c00;
}
.ae-dcpm-delete-btn__title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}
.ae-dcpm-delete-btn__sub {
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Logout link sits well below the destructive block as a small
   inconspicuous link — discoverable but visually de-emphasised. */
.ae-dcpm-help {
    margin-top: 2.5em;
    text-align: center;
    font-size: 0.9em;
    color: #5e6066;
}
.ae-dcpm-help a {
    color: inherit;
}

/* Confirmation page form */
.ae-dcpm-delete-form {
    margin-top: 1.5em;
    text-align: center;
}
