/* ===============================================
   INERWEB TT-IA — Styles Securite & RGPD v1.0
   =============================================== */

.lock-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1b3a63 0%, #0d1f35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.lock-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
  max-width: 360px;
  width: 90%;
  animation: lockFadeIn .25s ease-out;
}

@keyframes lockFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lock-logo { margin-bottom: 1.5rem; }
.lock-logo .logo-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.lock-logo .logo-text { font-size: 1.5rem; font-weight: 700; color: #1b3a63; }

.lock-message {
  background: #fff3cd;
  color: #856404;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border-left: 4px solid #ffc107;
}

.lock-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lock-form label {
  text-align: left;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.lock-form input {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.3em;
  transition: border-color .2s;
}
.lock-form input:focus {
  border-color: #1b3a63;
  outline: none;
  box-shadow: 0 0 0 3px rgba(27,58,99,.15);
}

.lock-btn-primary {
  background: #1b3a63;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.lock-btn-primary:hover { background: #2d5a8c; }
.lock-btn-primary:active { transform: scale(0.98); }

.lock-error {
  color: #dc3545;
  font-size: 0.85rem;
  min-height: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 600;
}
