/* ────────────────────────────────────────────────────────────────────────── */
/* style.css for /loginauth/ (Correct Small Button)                          */
/* ────────────────────────────────────────────────────────────────────────── */

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-box {
  width: 320px;
  padding: 32px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  text-align: center;
}

.login-box h1 {
  margin-bottom: 24px;
  color: #2c3e50;
  font-size: 1.8rem;
}

/* --- THE CORRECT, SMALL ROBLOX BUTTON --- */

.btn-roblox {
  /* This makes the button behave like text, not a giant block */
  display: inline-flex; 
  align-items: center; /* This perfectly aligns the logo and text vertically */
  
  /* Appearance */
  background-color: #232529; /* Dark, professional theme */
  color: #fff;
  font-size: 15px; /* A standard, small font size */
  font-weight: 500;
  text-decoration: none;
  
  /* Sizing - The key to making it SMALL */
  padding: 8px 16px; /* Reduced padding for a compact button */
  border-radius: 8px; /* A suitable corner radius for a small button */
  gap: 8px; /* A small gap between the logo and text */

  /* Interaction */
  transition: background-color 0.2s ease;
}

.btn-roblox:hover {
  background-color: #393B40; /* Subtle hover effect */
}

.roblox-logo {
  /* THIS IS THE FIX for "SAME SIZE AS TEXT" */
  height: 1.2em; /* This makes the logo's height relative to the font-size */
  width: auto;   /* This maintains the logo's aspect ratio */
}