/* Minimal black theme - Login page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  font-size: 16px;
}

.header-img {
  height: auto;
  max-height: 323px;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.header-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 2rem 1.5rem;
}

.login-section label {
  margin-bottom: 0.5rem;
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.login-section input:not([type="submit"]) {
  margin-bottom: 1.5rem;
  color: #fff;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  transition: all 0.2s ease;
}

.login-section input:not([type="submit"]):focus {
  outline: none;
  border-color: #555;
  background-color: #222;
}

input[type="submit"] {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  width: 100%;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

input[type="submit"]:active {
  background-color: #2a2a2a;
  transform: scale(0.98);
}

input[type="submit"]:disabled {
  background-color: #0a0a0a;
  border-color: #1a1a1a;
  color: #666;
  cursor: not-allowed;
  opacity: 0.5;
}

/* Desktop adjustments */
@media (min-width: 480px) {
  body {
    padding: 2rem;
  }
  
  .header-img {
    margin-top: 3rem;
  }
  
  .login-section {
    padding: 2.5rem 2rem;
  }
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}