body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #222; /* fallback */
  font-family: 'JetBrains Mono', 'Fira Mono', 'Roboto Mono', 'Consolas', 'Liberation Mono', 'Menlo', 'monospace';
}

.login-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  box-shadow: none;
  background: none;
  width: 90vw;
  max-width: 400px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 32px;
  object-fit: cover;
  border: 3px solid #5e81ac;
  background: #232a3b;
  box-shadow: 0 2px 12px 0 rgba(60,80,120,0.15);
  transition: width 0.2s, height 0.2s;
}

.username {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #e5e9f0;
  font-weight: 500;
  font-family: inherit;
  text-shadow:
    0 4px 16px #111b2a,
    0 2px 4px #232a3b88,
    0 0 4px #5e81ac88;
  text-align: center;
}

.password-input {
  width: 80vw;
  max-width: 320px;
  padding: 14px;
  font-size: 1.1rem;
  border: 1.5px solid #5e81ac;
  border-radius: 7px;
  background: rgba(46,52,64,0.7);
  color: #bfc9db;
  text-align: center;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(60,80,120,0.10);
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  font-family: inherit;
}

.password-input:hover {
  background: rgba(94,129,172,0.15);
  border-color: #81a1c1;
  color: #fff; /* Make text stand out more on hover */
  text-shadow: 0 0 8px #5e81ac, 0 0 2px #fff;
}

.password-input:disabled {
  opacity: 0.7;
  background: rgba(46,52,64,0.4);
  color: #7c8fa7;
  cursor: not-allowed;
}

/* Responsive adjustments for phones */
@media (max-width: 600px) {
  .login-container {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .profile-pic {
    width: 38vw;
    height: 38vw;
    max-width: 200px;
    max-height: 200px;
    margin-bottom: 24px;
  }
  .username {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .password-input {
    width: 96vw;
    max-width: 98vw;
    font-size: 1rem;
    padding: 12px;
  }
}