:root { 
  --glass-bg: rgba(255, 255, 255, 0.15); 
  --glass-border: rgba(255, 255, 255, 0.35); 
  --shadow: 0 12px 30px rgba(0,0,0,0.22); 
  --text: #10222a; 
}

* { 
  box-sizing: border-box; 
} 

html, body { 
  min-height: 100%; 
  margin: 0; 
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: var(--text); 
} 

body { 
  background-image: url("fondoArca.png"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed;

  position: relative;

  /* centrado de la ventana login */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
} 

body::before { 
  content: ""; 
  position: fixed;
  inset: 0; 
  background: rgba(0,0,0,0.18); 
  pointer-events: none; 
  z-index: 0;
}

.login {
  width: 40%;
  max-width: 650px;
  min-width: 320px;

  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--shadow);

  padding: 30px;

  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 25px;

  align-items: center;

  text-align: center;
  font-weight: bold;

  position: relative;
  z-index: 1;

  backdrop-filter: blur(8px);
}

.logoLogin {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
  border-radius: 30px;
  border-style: solid;
}

.zonaEdits {
	display: grid;
   grid-template-columns: 1fr 1fr;
   row-gap: 15px;
}

.zonaEdits input[type="text"],
.zonaEdits input[type="password"] {
  background-color: rgba(127, 127, 255, 0.15);
  color: lightgreen;
}