@media screen and (max-width: 768px) {
  .container.compact {
    box-sizing: border-box;
    width: 95%;
    max-width: 100%;
    margin: 1rem auto;
    padding: 1rem;
  }

  h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .inputs input {
    box-sizing: border-box;  /* Ensure padding and border are included in the width */
    display: block;          /* Make the input a block element */
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #444444;
    border-radius: 0;
  }

  .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .auth-buttons button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin: 0;
    transition: opacity 0.2s;
  }

  .auth-buttons button:active {
    opacity: 0.8;
  }

  #user-info {
    font-size: 14px;
    margin-top: 1rem;
    padding: 0.5rem;
  }
}
