/*
 * login-clean.css
 * Gedeelde stylesheet voor:
 * - general-login.php
 * - general-confirm.php
 * - general-register.php
 *
 * Doel:
 * 1. één gedeelde basis voor de loginflow;
 * 2. geen dubbele selectors of pagina-specifieke nood-overrides;
 * 3. componenten zoveel mogelijk hergebruiken;
 * 4. alleen login/registratie/reset-gerelateerde styling in dit bestand.
 */


/* =========================================================
   1. PAGINA / LOGIN-CARD
   Gebruikt door:
   - general-login.php
   - general-confirm.php
   - general-register.php
   ========================================================= */

body {
    background: linear-gradient(
        90deg,
        #f0f0ff 0%,
        var(--surface-alt) 100%
    ) !important;
}

.loginform {
    box-sizing: border-box;
    width: min(490px, calc(100% - 32px));
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
}

.loginform h2 {
    padding-top: 5px;
}


/* =========================================================
   2. ALGEMENE TEKST IN DE LOGINFLOW
   Gebruikt door alle drie de pagina's
   ========================================================= */

.heading {
    text-align: center;
    color: #4d4d4d;
    text-transform: uppercase;
}

.separator {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    color: #222;
}

p.logger {
    margin: 1.4rem 0;
    color: rgb(51, 51, 51);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.4;
    text-align: center;
}

.hero-sub {
    margin-top: 24px;
    margin-bottom: 12px;
}

.fieldhelp {
    margin-top: 20px;
    color: #666;
    font-size: 1.6em;
    line-height: 1.5em;
}


/* =========================================================
   3. GEDEELDE FORMULIER-VELDEN
   Gebruikt door:
   - general-login.php: e-mailadres
   - general-confirm.php: readonly e-mailadres
   - general-register.php: naam / e-mail / wachtwoorden
   ========================================================= */

.emailfield,
.formfield {
    box-sizing: border-box;
    display: block;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 16px;

    color: rgb(51, 51, 51);
    background: #fff;
    border: 1px solid rgb(66, 133, 244);
    border-radius: 4px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;

    appearance: none;
}

.grayish {
    color: #888;
    border-color: #c0c0c0;
    background: #fff;
}

.grayish:focus {
    background: #fff;
    border-color: #c0c0c0;
    outline: none;
}

.formfield.is-valid {
    border-color: navy;
}

.formfield.is-invalid {
    border-color: #b00020;
}


/* =========================================================
   4. STATUS-VINKJE
   Eén component voor:
   - general-confirm.php: status naast e-mailadres
   - general-register.php: e-mailadres / naam / wachtwoorden

   De cirkel wordt NIET geroteerd.
   Alleen ::after tekent en roteert het witte vinkje.
   ========================================================= */

.checkmark,
#checkmark {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;

    background: #47dda1;
    border-radius: 50%;
}

.checkmark::before,
#checkmark::before {
    content: none;
}

.checkmark::after,
#checkmark::after {
    content: "";
    position: absolute;
    box-sizing: border-box;

    width: 6px;
    height: 10px;
    left: 6px;
    top: 3px;

    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkmark[hidden] {
    display: none !important;
}

.notconfirmed {
    background: silver !important;
}

.confirmed {
    background: #47dda1;
}


/* =========================================================
   5. VELD + STATUS NAAST ELKAAR
   Gebruikt door:
   - general-confirm.php: readonly e-mailadres
   - general-register.php: e-mailadres
   - general-register.php: naam

   .confirm-email-row blijft voorlopig bestaan voor Confirm.
   .field-status-row is de algemene variant.
   ========================================================= */

.confirm-email-row,
.field-status-row {
    display: grid;
    grid-template-columns: minmax(0, 340px) 20px;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    margin: 0 auto 24px;
}

.confirm-email-row .emailfield,
.confirm-email-row .formfield,
.field-status-row .emailfield,
.field-status-row .formfield {
    width: 100%;
    margin: 0;
}

.confirm-email-row .checkmark,
.confirm-email-row #checkmark,
.field-status-row .checkmark,
.field-status-row #checkmark {
    position: relative;
    float: none;
    margin: 0;
    transform: none;
}


/* =========================================================
   6. WACHTWOORDVELDEN + OOG + STATUS
   Gebruikt door:
   - general-register.php registratie
   - general-register.php wachtwoord reset

   Verwachte HTML:
   <div class="formfield-wrap">
       <input class="formfield" ...>
       <button class="password-toggle" ...>...</button>
       <span class="checkmark" hidden></span>
   </div>
   ========================================================= */

.formfield-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto 18px;
}

.formfield-wrap .formfield {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 76px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 42px;
    z-index: 2;

    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;

    line-height: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-toggle img {
    display: block;
    width: 24px;
    height: 24px;
}

.formfield-wrap .checkmark {
    position: absolute;
    top: 50%;
    right: 12px;
    left: auto;
    z-index: 2;

    float: none;
    margin: 0;
    transform: translateY(-50%);
}


/* =========================================================
   7. VALIDATIE-MELDINGEN
   Gebruikt door general-register.php
   ========================================================= */

.form-error {
    margin-top: 8px;
    color: #b00020;
}

.form-success {
    margin-top: 8px;
    color: #146c43;
}


/* =========================================================
   8. VOORWAARDEN / CHECKBOX
   Gebruikt door:
   - general-confirm.php
   - eventueel general-login.php / general-register.php
   ========================================================= */

.conditions {
    margin-top: 20px;
    color: gray;
    font-size: 1.3em;
    line-height: 1.6em;
}

.conditions a {
    text-decoration: underline;
}

.conditions a:hover {
    text-decoration: none;
}

.confirm-conditions {
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.35;
}

.confirm-conditions .card-desc {
    display: block;
    cursor: pointer;
}

.confirm-conditions .check {
    margin-right: 6px;
    vertical-align: middle;
}


/* =========================================================
   9. KNOPPEN
   Gebruikt door alle drie de pagina's
   ========================================================= */

.base-button {
    width: 50%;
    padding: 11px 28px;

    color: #fff;
    background: navy;
    border: 0;
    border-radius: 4px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
}

.base-button:disabled {
    color: rgb(153, 153, 153);
    background: rgb(246, 246, 246);
    cursor: default;
}

#shubmit {
    margin-top: 20px;
}


/* =========================================================
   10. SOCIAL LOGIN
   Gebruikt door general-login.php
   ========================================================= */

.socbutton {
    position: relative;

    max-width: 298px;
    margin: auto;
    padding:
        calc(11px - 0.1ex)
        10px
        calc(11px + 0.1ex)
        calc(2.6rem + 10px);

    color: rgb(68, 68, 68);
    border: 0;
    border-radius: 4px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
}

.socbutton:hover {
    transition: color 0.5s linear;
}

.srv {
    position: absolute;
    top: 0;
    left: 0;

    box-sizing: border-box;
    width: 40px;
    height: 48px;

    fill: #fff;
}

.googly {
    background:
        linear-gradient(
            to right,
            rgb(66, 133, 244) 2.6rem,
            transparent 2.6rem
        )
        rgb(238, 238, 238);
}

.googly:hover {
    color: #fff;
    background: rgb(66, 133, 244);
}

.bookly {
    background:
        linear-gradient(
            to right,
            rgb(59, 88, 152) 2.6rem,
            transparent 2.6rem
        )
        rgb(238, 238, 238);
}

.bookly:hover {
    color: #fff;
    background: rgb(59, 88, 152);
}

.softy {
    background:
        linear-gradient(
            to right,
            #000080 2.6rem,
            transparent 2.6rem
        )
        rgb(238, 238, 238);
}

.softy:hover {
    color: #fff;
    background: #000080;
}

.apply {
    background:
        linear-gradient(
            to right,
            rgb(0, 0, 0) 2.6rem,
            transparent 2.6rem
        )
        rgb(238, 238, 238);
}

.apply:hover {
    color: #fff;
    background: rgb(0, 0, 0);
}


/* =========================================================
   11. TERUGPIJL
   Alleen behouden als general-login.php hem daadwerkelijk gebruikt
   ========================================================= */

.arrow {
    position: absolute;
    top: 24px;
    left: 15px;

    display: inline-block;
    padding: 4px;

    border: solid rgb(0, 0, 255);
    border-width: 0 3px 3px 0;
}

.left {
    transform: rotate(135deg);
}


/* =========================================================
   12. RESPONSIVE
   Geldt voor alle drie de pagina's
   ========================================================= */

@media (max-width: 600px) {

    body {
        background: #fff !important;
    }

    .loginform {
        width: calc(100% - 20px);
        min-width: 0;
        margin: 10px auto;
        padding: 16px;
    }

    .emailfield,
    .formfield {
        width: 100%;
    }

    .confirm-email-row {
        grid-template-columns: minmax(0, 1fr) 20px;
    }

    .base-button {
        width: 100%;
        max-width: 340px;
    }

    .arrow {
        top: 20px;
    }
}


/* =========================================================
   13. PROFIELPAGINA
   Gebruikt door general-profile.php
   ========================================================= */

.profile-card {
    text-align: center;
}

.profile-edit {
    display: none;
}

.profile-display {
    display: block;
}

.profile-name {
    margin: 0;
}

.profile-pencil {
    cursor: pointer;
}

.profile-divider {
    margin: 25px;
    border: 0;
    border-top: 1px dashed #ecebff;
}

.profile-icon {
    display: block;
    font-size: 2.5em;
}

.profile-stars {
    display: block;
    font-size: 1.5em;
}

.profile-name-input {
    box-sizing: border-box;
    width: min(100%, 340px);
    margin: 0 auto 10px;
    padding: 12px 16px;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    font: inherit;
}

.profile-action {
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
    background: navy;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.profile-action:hover {
    background: #333399;
}

.profile-continue {
    margin: 20px auto 0;
    text-transform: uppercase;
}

.profile-logout {
    font-size: 15px;
    text-transform: uppercase;
}


/* =========================================================
   14. CERTIFICAAT
   Gebruikt door general-certificate.php
   ========================================================= */

.certificate-card {
    text-align: center;
}

.certificate-score {
    margin: 24px 0;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.certificate-celebration {
    margin: 20px 0;
    font-size: 3rem;
    line-height: 1;
}

.certificate-action {
    display: block;
    width: auto;
    min-width: 180px;
    margin: 20px auto;
}

.certificate-status {
    min-height: 1.5em;
    margin-top: 10px;
    color: #555;
}

.certificate-passback {
    margin-top: 20px;
    color: gray;
    font-size: 1.1em;
    line-height: 1.5;
}


/* =========================================================
   15. VOORTGANG / OPENSTAANDE VRAGEN
   Gebruikt door general-percentage.php
   ========================================================= */


.percentage-card {
    text-align: left;
}

.percentage-header {
    margin-bottom: 28px;
    text-align: center;
}

.percentage-header h2 {
    margin-bottom: 8px;
}

.percentage-icon {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
}

.percentage-intro {
    max-width: 420px;
    margin: 0 auto;
    color: #666;
    line-height: 1.5;
}


/* Korte samenvatting boven de lijst */

.percentage-summary {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 12px;

    color: #35355f;
    background: #f0f0ff;
    border-radius: 999px;

    font-size: .9rem;
    font-weight: 700;
}


/* Lijst */

.percentage-list {
    display: grid;
    gap: 14px;
}


/* Eén openstaand onderdeel */

.percentage-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;

    padding: 16px;

    background: #fff;
    border: 1px solid #e5e5f2;
    border-radius: 12px;

    text-align: left;
}

.percentage-item:hover {
    border-color: #c7c7e8;
    box-shadow: 0 4px 14px rgba(25, 25, 80, .07);
}


/* Nummer links */

.percentage-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: navy;
    background: #f0f0ff;
    border-radius: 50%;

    font-size: 1rem;
    font-weight: 800;
}


/* Titel en link */

.percentage-content {
    min-width: 0;
}

.percentage-title {
    margin: 0 0 8px;
    color: #222;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.percentage-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;

    color: navy;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
}

.percentage-link:hover {
    text-decoration: underline;
}


/* Alles afgerond */

.percentage-empty {
    padding: 28px 20px;
    text-align: center;
    background: #f8f8ff;
    border-radius: 12px;
}

.percentage-empty-icon {
    display: block;
    margin-bottom: 8px;
    font-size: 2.5rem;
}

.percentage-empty h3 {
    margin: 0 0 8px;
}

.percentage-empty p {
    margin: 0 0 22px;
    color: #666;
}

.percentage-main-action {
    display: inline-block;
    width: auto;
    min-width: 190px;
}


/* Mobiel */

@media (max-width: 600px) {

    .percentage-item {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 14px;
    }

    .percentage-number {
        width: 36px;
        height: 36px;
    }
}



/* =========================================================
   16. DASHBOARD
   Gebruikt door general-dashboard.php
   ========================================================= */

.dashboard {
    width: min(1100px, calc(100% - 32px));
    margin: 32px auto 60px;
}


/* ---------- header ---------- */

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 24px;
    padding: 28px 32px;

    background: #fff;
    border-radius: 18px;
}

.dashboard-header h1 {
    margin: 2px 0 6px;
    font-size: 2rem;
}

.dashboard-eyebrow {
    margin: 0;
    color: navy;
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.dashboard-course {
    margin: 0;
    color: #666;
}


/* ---------- ronde voortgang ---------- */

.dashboard-progress {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 104px;
    height: 104px;
    flex: 0 0 104px;

    border-radius: 50%;

    background:
        radial-gradient(
            closest-side,
            white 78%,
            transparent 79% 100%
        ),
        conic-gradient(
            navy var(--progress),
            #ececf7 0
        );
}

.dashboard-progress strong {
    color: navy;
    font-size: 1.45rem;
    line-height: 1;
}

.dashboard-progress span {
    margin-top: 3px;
    color: #777;
    font-size: .72rem;
}


/* ---------- primaire actie ---------- */

.dashboard-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 20px;
    padding: 24px 28px;

    background: navy;
    border-radius: 18px;
    color: #fff;
}

.dashboard-primary-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dashboard-primary h2 {
    margin: 0 0 5px;
    color: inherit;
    font-size: 1.3rem;
}

.dashboard-primary p {
    margin: 0;
    opacity: .85;
}

.dashboard-primary .dashboard-card-icon {
    font-size: 2rem;
}

.dashboard-main-button {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    background: #fff;
    color: navy;
}


/* ---------- grid ---------- */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* ---------- cards ---------- */

.dashboard-card {
    padding: 24px;

    background: #fff;
    border: 1px solid #e7e7f2;
    border-radius: 16px;

    text-align: left;
}

.dashboard-card:hover {
    border-color: #ccccdf;
    box-shadow: 0 6px 20px rgba(25, 25, 70, .06);
}

.dashboard-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dashboard-card-heading h2 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

.dashboard-card-icon {
    font-size: 1.5rem;
}

.dashboard-card p {
    line-height: 1.5;
}


/* certificaat krijgt iets meer nadruk */

.dashboard-certificate {
    grid-row: span 2;
}

.dashboard-score-line {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 22px 0;
    padding: 12px 14px;

    background: #f4f4ff;
    border-radius: 10px;
}

.dashboard-score-line strong {
    color: navy;
    font-size: 1.35rem;
}

.dashboard-success {
    color: #146c43;
    font-weight: 700;
}

.dashboard-muted {
    color: #666;
    font-size: .95rem;
}


/* ---------- subtiele actieknoppen ---------- */

.dashboard-link-button {
    display: inline-flex;
    align-items: center;

    margin-top: 12px;
    padding: 0;

    color: navy;
    background: none;
    border: 0;

    font: inherit;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;
}

.dashboard-link-button:hover {
    text-decoration: underline;
}

.dashboard-download {
    width: auto;
    margin-top: 12px;
}


/* ---------- naam ---------- */

.dashboard-name-display {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 20px 0;
    padding: 14px 16px;

    background: #f7f7fc;
    border-radius: 10px;
}

.dashboard-name {
    color: #222;
    font-size: 1.1rem;
}

.dashboard-pencil {
    padding: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1.15rem;
}

.dashboard-name-edit {
    display: none;
    margin: 20px 0;
}

.dashboard-name-form {
    display: flex;
    gap: 8px;
    align-items: center;
}


/* ---------- social ---------- */

.dashboard-socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.dashboard-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #f5f5fb;
    border-radius: 10px;
}

.dashboard-socials img {
    display: block;
    width: 32px;
    height: 32px;
}


/* ---------- responsive ---------- */

@media (max-width: 750px) {

    .dashboard {
        width: calc(100% - 20px);
        margin-top: 16px;
    }

    .dashboard-header {
        padding: 22px;
    }

    .dashboard-progress {
        width: 86px;
        height: 86px;
        flex-basis: 86px;
    }

    .dashboard-primary {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-certificate {
        grid-row: auto;
    }

    .dashboard-name-form {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-progress {
        align-self: center;
    }
}


/* =========================================================
   17. ACCOUNT VERWIJDEREN
   Gebruikt door general-delete.php
   ========================================================= */

.delete-page {
    width: 100%;
    margin: 32px 0 60px;
}

.delete-card {
    max-width: 560px;
    text-align: left;
}

.delete-card h2 {
    margin-bottom: 8px;
    text-align: center;
}


/* ---------- header ---------- */

.delete-header {
    margin-bottom: 26px;
    text-align: center;
}

.delete-header p {
    max-width: 430px;
    margin: 0 auto;
    color: #666;
    line-height: 1.5;
}

.delete-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin: 0 auto 14px;

    background: #edf8f1;
    border-radius: 50%;

    color: #146c43;
    font-size: 1.8rem;
    font-weight: 800;
}

.delete-icon-warning {
    background: #fff2f2;
    color: #b00020;
}


/* ---------- account ---------- */

.delete-account-box {
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin-bottom: 20px;
    padding: 15px 17px;

    background: #f7f7fc;
    border-radius: 10px;
}

.delete-account-label {
    color: #777;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.delete-account-box strong {
    overflow-wrap: anywhere;
    color: #222;
}


/* ---------- waarschuwing ---------- */

.delete-warning {
    margin-bottom: 22px;
    padding: 17px 18px;

    background: #fff8f8;
    border: 1px solid #f2d1d6;
    border-radius: 12px;
}

.delete-warning h3 {
    margin: 0 0 6px;
    color: #8d1027;
    font-size: 1rem;
}

.delete-warning p {
    margin: 0;
    color: #666;
    font-size: .95rem;
    line-height: 1.45;
}


/* ---------- formulier ---------- */

.delete-form {
    margin-top: 20px;
}

.delete-confirmation {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;

    color: #444;
    line-height: 1.45;

    cursor: pointer;
}

.delete-confirmation input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.delete-button {
    display: block;

    width: 100%;
    margin-top: 22px;
    padding: 13px 18px;

    color: #fff;
    background: #b00020;
    border: 0;
    border-radius: 6px;

    font: inherit;
    font-weight: 800;

    cursor: pointer;
}

.delete-button:hover {
    background: #8f001a;
}

.delete-button:focus-visible {
    outline: 3px solid rgba(176, 0, 32, .22);
    outline-offset: 3px;
}


/* ---------- foutmelding ---------- */

.delete-error {
    margin-bottom: 20px;
    padding: 12px 14px;

    color: #8d1027;
    background: #fff1f3;
    border: 1px solid #f0c5cc;
    border-radius: 8px;

    font-weight: 700;
}


/* ---------- alternatief ---------- */

.delete-alternative {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;

    margin-top: 30px;
    padding-top: 24px;

    border-top: 1px solid #ececf2;
}

.delete-alternative-icon {
    font-size: 1.8rem;
}

.delete-alternative h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.delete-alternative p {
    margin: 0;
    color: #666;
}


/* ---------- succes ---------- */

.delete-success {
    text-align: center;
}

.delete-lead {
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 700;
}

.delete-notice {
    margin: 25px 0;
    padding: 16px 18px;

    background: #f7f7fc;
    border-radius: 10px;

    text-align: left;
}

.delete-notice p {
    margin: 5px 0 0;
    color: #666;
    line-height: 1.5;
}

.delete-goodbye {
    margin: 24px 0;
    font-weight: 700;
}

.delete-home-button {
    display: inline-block;
    width: auto;
}


/* ---------- mobiel ---------- */

@media (max-width: 600px) {

    .delete-page {
        margin-top: 12px;
    }

    .delete-card {
        max-width: none;
    }
}
