
.lockscreen {
  width: 100vw;
  height: 100vh;
  background: 
    /* OVERLAY NEGRO */
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url('../assets/images/lockscreen.png') center/cover no-repeat;
    /* GRADIENTE NORD */
    /* WALLPAPER */
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  flex-direction: column;
  gap: 40px;
  animation: fadeIn 300ms ease-in-out;
}

/* Container principal - Nord */
.lockscreen-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 10;
}

/* Sección de bienvenida - Nord */
.lockscreen-welcome {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lockscreen-welcome h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--nord4);
  font-family: var(--font-mono);
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(136, 192, 208, 0.3);
}

.lockscreen-welcome .time {
  font-size: 32px;
  color: var(--nord8); /* Azul Nord */
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(136, 192, 208, 0.4);
}

.lockscreen-welcome .date {
  font-size: 16px;
  color: var(--nord3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* Contenedor de inputs - Nord */
.lockscreen-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
}

.lockscreen-input-group {
  position: relative;
}

.lockscreen-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(46, 52, 64, 0.9); /* nord0 */
  border: 1px solid var(--nord2);
  border-radius: var(--radius);
  color: var(--nord4);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: all 200ms ease;
  box-sizing: border-box;
}

.lockscreen-input-group input::placeholder {
  color: var(--nord3);
}

.lockscreen-input-group input:focus {
  outline: none;
  border-color: var(--nord8);
  background: rgba(136, 192, 208, 0.08);
  box-shadow: 0 0 15px rgba(136, 192, 208, 0.25);
}

.lockscreen-input-group input[type="password"] {
  letter-spacing: 4px;
}

/* Botones - Nord + Iconos PNG */
.lockscreen-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.lockscreen-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: 0px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 200ms ease;
  color: var(--nord4);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
}

.lockscreen-btn:hover {
  color: var(--nord8);
  transform: translateY(-2px);
}

.lockscreen-btn .icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.02); }
}

.lockscreen.fade-out {
  animation: fadeOut 600ms ease-in-out forwards;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--nord8);
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
