/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Corpo */
  body.login {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e, #16213e);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Containers principais */
  .login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .login-container {
    background: rgba(20, 20, 35, 0.9);
    border-radius: 16px;
    padding: 32px 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: fadeIn 0.5s ease;
  }
  
  /* Animação de entrada */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Header / Logo */
  .login-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .logo-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  .logo-clicks {
    color: #42a5f5;
  }
  
  .logo-skins {
    color: #42a5f5;
  }
  
  .karambit-svg {
    width: 38px;
    height: 38px;
    margin: 0 6px;
  }
  
  .login-subtitle {
    margin-top: 6px;
    font-size: 14px;
    color: #bbb;
  }
  
  /* Formulários */
  .login-form .form-group {
    margin-bottom: 16px;
    text-align: left;
  }
  
  .login-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
  }
  
  .login-form input,
  .login-form select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a2e;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
  }
  
  .login-form input:focus,
  .login-form select:focus {
    border-color: #42a5f5;
    background: #22223a;
    box-shadow: 0 0 6px rgba(66,165,245,0.4);
  }
  
  /* Botões */
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s ease;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .btn-primary {
    background: linear-gradient(145deg, #1976d2, #42a5f5);
    color: #fff;
    box-shadow: 0 4px 12px rgba(25,118,210,0.4);
  }
  
  .btn-primary:hover {
    background: linear-gradient(145deg, #1565c0, #1e88e5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25,118,210,0.6);
  }
  
  .btn-primary:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(25,118,210,0.5) inset;
  }
  
  .btn-secondary {
    background: linear-gradient(145deg, #2a2a40, #3a3a55);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .btn-secondary:hover {
    background: linear-gradient(145deg, #38385a, #4a4a70);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  }
  
  .btn-secondary:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4) inset;
  }
  
  /* Footer */
  .login-footer {
    margin-top: 16px;
  }
  