/* BASE */

body {
    background: #0b1220;
    color: white;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
  }
  
  /* NAVBAR (same as login/picks) */
  
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #111a2f;
    border-bottom: 1px solid #1f2a44;
    z-index: 100;
  }
  
  .nav-inner {
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-left {
    color: #00ffcc;
    font-weight: bold;
    font-size: 18px;
  }
  
  .nav-right {
    display: flex;
    gap: 20px;
  }
  
  .nav-right a {
    color: white;
    text-decoration: none;
  }
  
  .nav-right a:hover {
    color: #00ffcc;
  }
  
  /* MAIN CENTER */
  
  .main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
  }
  
  /* SIGNUP BOX */
  
  .signup-container {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1f2a44;
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
  
  .signup-container h1 {
    color: #00ffcc;
    margin-bottom: 20px;
  }
  
  /* INPUTS */
  
  .input-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .input-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #00ffcc;
    background: #0b1220;
    color: white;
    outline: none;
  }
  
  /* BUTTON */
  
  button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: linear-gradient(135deg, #00ffcc, #00ddb3);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  button:hover {
    transform: scale(1.02);
  }
  
  /* LOGIN TEXT */
  
  .login-text {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .login-text a {
    color: #00ffcc;
    text-decoration: none;
  }
  
  /* MOBILE */
  
  @media (max-width: 768px) {
  
    .main-content {
      padding: 20px;
      align-items: flex-start;
    }
  
  }