/* EasyPath — Profile Completion Page & Notice */

/* ── Completion Page ─────────────────────────────────────────────────────── */
.easypath-completion-wrap {
    max-width: 540px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
    overflow: hidden;
    font-family: inherit;
}

.easypath-completion-header {
    background: linear-gradient(135deg, #0073aa 0%, #005d8c 100%);
    color: #fff;
    text-align: center;
    padding: 36px 32px 28px;
}

.easypath-completion-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.easypath-completion-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.easypath-completion-subtitle {
    font-size: 15px;
    opacity: .88;
    margin: 0;
    color: #fff;
}

.easypath-completion-form {
    padding: 28px 32px 32px;
}

.easypath-completion-field {
    margin-bottom: 20px;
}

.easypath-completion-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.easypath-completion-field input,
.easypath-completion-field select,
.easypath-completion-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 7px;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
    background: #fafafa;
    color: #222;
    box-sizing: border-box;
}

.easypath-completion-field input:focus,
.easypath-completion-field select:focus,
.easypath-completion-field textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,.14);
    outline: none;
    background: #fff;
}

.easypath-completion-field.has-error input,
.easypath-completion-field.has-error select,
.easypath-completion-field.has-error textarea {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,.10);
}

.easypath-field-error-msg {
    display: block;
    color: #e53935;
    font-size: 13px;
    margin-top: 5px;
}

.easypath-required { color: #e53935; margin-inline-start: 3px; }
.easypath-optional { font-size: .82em; color: #999; font-weight: normal; margin-inline-start: 5px; }

.easypath-completion-errors {
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 7px;
    padding: 12px 16px;
    margin: 0 32px 16px;
    font-size: 14px;
    color: #c0392b;
}
.easypath-completion-errors p { margin: 3px 0; }

.easypath-completion-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.easypath-btn-primary {
    display: inline-block;
    background: #0073aa;
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .1s;
}
.easypath-btn-primary:hover { background: #005d8c; transform: translateY(-1px); color: #fff !important; }

.easypath-btn-skip {
    color: #888;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.easypath-btn-skip:hover { color: #555; }

.easypath-required-note {
    font-size: 12px;
    color: #aaa;
    margin-top: 16px;
    text-align: center;
}

/* ── Success state ───────────────────────────────────────────────────────── */
.easypath-completion-success {
    max-width: 420px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.easypath-success-icon { font-size: 56px; display: block; margin-bottom: 16px; }
.easypath-completion-success h3 { font-size: 22px; color: #2e7d32; margin-bottom: 10px; }
.easypath-completion-success p  { color: #666; margin-bottom: 24px; }

/* ── Footer notice banner ────────────────────────────────────────────────── */
.easypath-profile-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: calc(100% - 40px);
    max-width: 620px;
    background: #1d2327;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.28);
    animation: easypath-slide-up .35s ease;
}

@keyframes easypath-slide-up {
    from { opacity:0; transform: translateX(-50%) translateY(20px); }
    to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

.easypath-profile-notice-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    flex-wrap: wrap;
}

.easypath-notice-icon { font-size: 22px; flex-shrink: 0; }

.easypath-profile-notice-inner p {
    flex: 1;
    font-size: 14px;
    margin: 0;
    color: #ddd;
    min-width: 200px;
}

.easypath-notice-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.easypath-notice-btn {
    background: #0073aa;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.easypath-notice-btn:hover { background: #005d8c; color: #fff !important; }

.easypath-notice-dismiss {
    background: none;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    border-radius: 4px;
    transition: color .2s, background .2s;
}
.easypath-notice-dismiss:hover { color: #fff; background: rgba(255,255,255,.1); }

@media (max-width: 480px) {
    .easypath-completion-form { padding: 20px 18px 24px; }
    .easypath-completion-header { padding: 28px 18px 22px; }
    .easypath-completion-errors { margin: 0 18px 14px; }
}
