/* EgyptFun PWA — восстановление доступа (связка ключей). */

/* Кнопка-вход в блоке гостя (Меню) */
.ef-recoveryLink {
  display: flex; align-items: center; gap: 10px;
  width: calc(100% - 32px); margin: 8px 16px 0;
  background: #fff; border: 1px solid rgba(14, 77, 86, .12);
  border-radius: 14px; padding: 12px 14px; cursor: pointer;
  font: 600 13.5px inherit; color: #0C2A2E; text-align: left;
  box-shadow: 0 4px 14px rgba(14, 77, 86, .05);
}
.ef-recoveryLink:active { transform: scale(.99); }
.ef-recoveryLinkI {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 17px;
  background: rgba(18, 112, 126, .10);
}
.ef-recoveryLinkT { flex: 1; min-width: 0; line-height: 1.3; }

/* Страница восстановления */
.ef-recCard {
  margin: 12px 16px; background: #fff;
  border: 1px solid rgba(14, 77, 86, .10); border-radius: 16px;
  padding: 16px; box-shadow: 0 6px 20px rgba(14, 77, 86, .06);
}
.ef-recH3 { font-size: 16px; font-weight: 800; color: #0E4D56; margin: 0 0 10px; }
.ef-recLead { font-size: 13px; line-height: 1.5; color: #5C7B7F; margin: 0 0 14px; }
.ef-recNote {
  font-size: 13px; line-height: 1.5; color: #8a5a00;
  background: #FFF7E8; border: 1px solid #F3E0B8; border-radius: 12px; padding: 12px 14px;
}

.ef-recDataRow {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; font-size: 13px; color: #5C7B7F;
}
.ef-recDataLbl { font-weight: 600; }
.ef-recDataVal { font-size: 16px; color: #0C2A2E; font-weight: 800; }

.ef-recKeyBox {
  margin: 6px 0 14px; padding: 16px; text-align: center;
  font: 800 22px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 1px; color: #0E4D56;
  background: linear-gradient(135deg, #F4FBFB, #EAF6F6);
  border: 1.5px dashed #12707E; border-radius: 14px;
  word-break: break-all; user-select: all; -webkit-user-select: all;
}

.ef-recBtn {
  width: 100%; border: none; border-radius: 13px; padding: 14px;
  font: 700 15px inherit; cursor: pointer; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ef-recBtn:active { transform: scale(.98); }
.ef-recBtn[disabled] { opacity: .6; pointer-events: none; }
.ef-recBtn--pri { background: linear-gradient(135deg, #12707E, #0E4D56); color: #fff; }
.ef-recBtn--ok { background: linear-gradient(135deg, #1AA0AE, #12707E); color: #fff; }

.ef-recHint {
  font-size: 12px; line-height: 1.5; color: #5C7B7F; margin-top: 12px;
  background: #F4FBFB; border-radius: 10px; padding: 11px 13px;
}
.ef-recHint b { color: #0E4D56; }

.ef-recRegen {
  display: block; margin: 14px auto 0; background: none; border: none;
  color: #9DB2B4; font: 600 12.5px inherit; text-decoration: underline; cursor: pointer;
}

.ef-recIn {
  width: 100%; box-sizing: border-box; margin-bottom: 10px;
  padding: 13px 14px; border: 1.5px solid #DCE7E7; border-radius: 12px;
  font: 600 15px inherit; color: #0C2A2E; background: #fff;
}
.ef-recIn:focus { outline: none; border-color: #12707E; }
.ef-recInKey { text-transform: uppercase; letter-spacing: .5px; font-family: ui-monospace, Menlo, Consolas, monospace; }

.ef-recMsg { margin-top: 12px; font-size: 13px; font-weight: 600; line-height: 1.45; border-radius: 10px; padding: 11px 13px; }
.ef-recMsg--ok { color: #0a7a2f; background: #E9F7EE; border: 1px solid #BCE6C9; }
.ef-recMsg--err { color: #b32d2e; background: #FCEBEA; border: 1px solid #F3C7C5; }
