/* Login Textbox Styles */
.login-textbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 352px;
  background: #1a2a1a;
  border: 4px solid #9acd32;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #333, inset 2px 2px 0 #b0ff57, inset -2px -2px 0 #669900;
  padding: 16px;
  font-family: 'Courier New', monospace;
  color: #9acd32;
  text-shadow: 0 0 4px #9acd32;
  z-index: 3000;
  display: none;
}

.login-textbox input {
  width: 100%;
  background: #1a2a1a;
  border: 3px solid #666;
  border-radius: 8px;
  padding: 6px 10px;
  margin: 8px 0;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #9acd32;
  box-shadow: 0 0 4px #9acd32;
}

.login-textbox input:focus {
  outline: none;
  border-color: #b0ff57;
  box-shadow: 0 0 6px #b0ff57;
}

.login-textbox .register-link {
  display: block;
  text-align: center;
  margin-top: 8px;
  color: #b0ff57;
  text-decoration: none;
  font-size: 11px;
  cursor: pointer;
}

.login-textbox .register-link:hover {
  text-shadow: 0 0 8px #b0ff57;
}

/* Login Button Styles */
#login-button {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 384px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a2a1a;
  border: 4px solid #9acd32;
  border-radius: 10px;
  box-shadow: 
    4px 4px 0 #333,
    inset 2px 2px 0 #b0ff57,
    inset -2px -2px 0 #669900;
  z-index: 2000;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
  font-family: 'Courier New', monospace;
  font-size: 20px;
  color: #9acd32;
  text-shadow: 0 0 4px #9acd32;
}

#login-button:hover {
  border-color: #b0ff57;
  box-shadow: 
    4px 4px 0 #333,
    inset 2px 2px 0 #b0ff57,
    inset -2px -2px 0 #669900,
    0 0 12px #b0ff57;
}

#login-button:active {
  transform: translate(2px, 2px);
  box-shadow: 
    2px 2px 0 #333,
    inset 2px 2px 0 #b0ff57,
    inset -2px -2px 0 #669900;
}

#login-button span {
  pointer-events: none;
} 